sterling/.gitlab-ci.yml
2018-05-16 20:58:35 +00:00

24 lines
No EOL
316 B
YAML

image: "rust:latest"
stages:
- test
- deploy
cargo:test:
stage: test
only:
- master
script:
- cargo test --verbose
cargo:build:
stage: deploy
only:
- master
script:
- cargo build --release
cache:
paths:
- target/
artifacts:
paths:
- target/release/sterling