Updated .gitlab-ci.yml

This commit is contained in:
Jordan Petridis 2017-10-05 16:24:59 +03:00
parent 8d17976b8a
commit dce7fc1468
No known key found for this signature in database
GPG Key ID: CEABAD9F5683B9A6

View File

@ -15,8 +15,8 @@ test:stable:
image: "rust" image: "rust"
script: script:
- rustc --version && cargo --version # Print version info for debugging - rustc --version && cargo --version # Print version info for debugging
- cargo build - cargo build --all
- cargo test --verbose --jobs 1 - cargo test --all --verbose --jobs 1
# Use cargo to test the project # Use cargo to test the project
test:nightly: test:nightly:
@ -29,5 +29,5 @@ test:nightly:
# - cargo test --verbose # - cargo test --verbose
# # Don't paralize, At least until I fix tempdb helper fn. # # Don't paralize, At least until I fix tempdb helper fn.
- cargo test --verbose --jobs 1 - cargo test --verbose --jobs 1
- cargo bench # - cargo bench
allow_failure: true allow_failure: true