xmpp-rs/.gitlab-ci.yml

28 lines
419 B
YAML
Raw Normal View History

2018-12-20 15:56:15 +00:00
stages:
- build
- test
2018-12-20 15:56:15 +00:00
rust-latest-build:
2018-12-20 15:56:15 +00:00
stage: build
image: rust:latest
script:
- cargo build --verbose
rust-nightly-build:
2018-12-20 15:56:15 +00:00
stage: build
image: rustlang/rust:nightly
script:
- cargo build --verbose
rust-latest-test:
stage: test
image: rust:latest
script:
- cargo test --verbose
rust-nightly-test:
stage: test
image: rustlang/rust:nightly
script:
2018-12-20 15:56:15 +00:00
- cargo test --verbose