gluebuddy/.gitlab-ci.yml

22 lines
276 B
YAML

image: "rust:latest"
stages:
- test
variables:
CARGO_HOME: "${CI_PROJECT_DIR}/.cargo"
cache:
paths:
- .cargo/
- target/
test:
stage: test
artifacts:
paths:
- target/release/gluebuddy
script:
- cargo build --release
- cargo test --release