2015-04-13 20:51:16 +02:00
|
|
|
language: rust
|
2015-05-20 09:04:45 +02:00
|
|
|
rust: nightly
|
2015-04-13 20:51:16 +02:00
|
|
|
sudo: false
|
|
|
|
|
|
|
|
script:
|
2015-08-13 10:32:35 +02:00
|
|
|
- python util/update_lints.py -c
|
2016-03-07 18:40:13 +01:00
|
|
|
- cargo build --features debugging
|
2016-03-15 10:11:56 +01:00
|
|
|
- rm -rf target/ Cargo.lock
|
2015-12-05 09:53:00 +01:00
|
|
|
- cargo test --features debugging
|
2016-03-07 19:08:46 +01:00
|
|
|
|
|
|
|
# only test regex_macros if it compiles
|
|
|
|
- if [[ "$(cargo build --features 'debugging test-regex_macros')" = 101 ]]; then cargo test --features 'debugging test-regex_macros'; fi
|