stages: - test - build - deploy-prod 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-prod: stage: deploy script: - echo "Let's launch!" environment: production