mirror of
https://gitlab.kit.edu/uskyk/kv.git
synced 2024-11-09 10:50:41 +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'
|