mirror of
https://gitlab.kit.edu/uskyk/kv.git
synced 2024-11-09 19:00:47 +00:00
14 lines
262 B
YAML
14 lines
262 B
YAML
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'
|