kv/.gitlab-ci.yml

14 lines
262 B
YAML
Raw Permalink Normal View History

2021-03-20 21:51:19 +00:00
variables:
CARGO_HOME: /tmp/cargo
CARGO_TARGET_DIR: /tmp/cargo/target
build:
script:
- nix-shell -p rustc cargo --run "sh -c '
rustc -vV &&
cargo -vV &&
cargo build'"
test:
script:
- nix-shell -p rustc cargo --run 'cargo test'