Minor GitLab CI stage renames, cargo environment debugging (test)

This commit is contained in:
timvisee 2018-06-18 18:54:14 +02:00
parent f9c0144af4
commit dbc325cc4e
No known key found for this signature in database
GPG key ID: 109CBA0BF74036C2

View file

@ -28,6 +28,10 @@ before_script:
.check-base: &check-base
stage: check
script:
# Test: cargo and rust environment
- env
- cat ~/.profile
- cargo check --all --verbose
- cargo check --no-default-features --all --verbose
- cargo check --features no-color --all --verbose
@ -44,14 +48,14 @@ check-nightly:
variables:
RUST_VERSION: nightly
# Run unit tests
test-unit:
# Run the unit tests through Cargo
test-cargo:
stage: test
script:
- cargo test --all --verbose
# Run integration test with the public Send service
integration-send:
test-public-send:
stage: integration
script:
- cargo build