kv/.gitlab-ci.yml

13 lines
218 B
YAML
Raw Normal View History

2021-03-20 21:24:52 +00:00
variables:
CARGO_HOME: /tmp/cargo
build:
script:
2021-03-20 21:29:51 +00:00
- nix-shell -p rustc cargo --cmd "sh -c '
rustc -vV &&
cargo -vV &&
cargo build'"
2021-03-20 21:24:52 +00:00
test:
script:
2021-03-20 21:29:51 +00:00
- nix-shell -p cargo --cmd 'cargo test'