nyxi-installer/.gitlab-ci.yml
Aaron Honeycutt 469d3820e2 fix
2025-04-23 19:59:58 -06:00

28 lines
466 B
YAML

stages:
- test
- build
- deploy
test:
stage: test
image: rust:latest
before_script:
- apt update -m
- apt install -y libfdisk-dev libclang-19-dev
script:
- cargo test --verbose
build:
stage: build
image: rust:latest
before_script:
- apt update -m
- apt install -y libfdisk-dev libclang-19-dev
script:
- cargo build --verbose
deploy:
stage: deploy-prod
script:
- echo "Let's launch!"
environment: production