mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
Fix .travis.yml again
This commit is contained in:
parent
578cc3dc71
commit
72b747915c
11
.travis.yml
11
.travis.yml
@ -13,16 +13,15 @@ script:
|
||||
- rm -rf target/ Cargo.lock
|
||||
- cargo test --features debugging
|
||||
|
||||
- # only test regex_macros if it compiles
|
||||
- |
|
||||
after_success:
|
||||
# only test regex_macros if it compiles
|
||||
- |
|
||||
#!/bin/bash
|
||||
cargo test --no-run --features 'debugging test-regex_macros'
|
||||
if [ "$?" = 101 ]; then
|
||||
cargo test --features 'debugging test-regex_macros'
|
||||
if [ "$?" != 101 ]; then
|
||||
cargo test --features 'debugging test-regex_macros' compile_test
|
||||
fi
|
||||
|
||||
# trigger rebuild of the clippy-service, to keep it up to date with clippy itself
|
||||
after_success:
|
||||
- |
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
Loading…
Reference in New Issue
Block a user