mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-02-17 06:28:42 +00:00
Fix .travis.yml again
This commit is contained in:
parent
578cc3dc71
commit
72b747915c
1 changed files with 5 additions and 6 deletions
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…
Add table
Reference in a new issue