mirror of
https://gitlab.com/ahoneybun/nyxi-installer.git
synced 2025-05-12 11:04:02 -06:00
15 lines
286 B
YAML
15 lines
286 B
YAML
image: "rust:latest"
|
|
|
|
build-job:
|
|
stage: build
|
|
image: ubuntu:22.04
|
|
needs:
|
|
- job: tests-job
|
|
- job: prepare-job
|
|
artifacts: true
|
|
script:
|
|
- echo "======== BUILD JOB ========"
|
|
- cargo build --release
|
|
artifacts:
|
|
paths:
|
|
- target/release/nyxi-installer
|