kv/.gitlab-ci.yml

14 lines
262 B
YAML
Raw Normal View History

2021-03-20 21:24:52 +00:00
variables:
CARGO_HOME: /tmp/cargo
2021-03-20 21:46:35 +00:00
CARGO_TARGET_DIR: /tmp/cargo/target
2021-03-20 21:24:52 +00:00
build:
script:
2021-03-20 21:50:14 +00:00
- nix-shell -p rustc cargo --run "sh -c '
2021-03-20 21:29:51 +00:00
rustc -vV &&
cargo -vV &&
cargo build'"
2021-03-20 21:24:52 +00:00
test:
script:
2021-03-20 21:50:14 +00:00
- nix-shell -p rustc cargo --run 'cargo test'