nyxi-installer/.gitlab-ci.yml
Aaron Honeycutt 3537cce31d fix
2025-04-23 20:00:35 -06:00

28 lines
461 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
script:
- echo "Let's launch!"
environment: production