2015-04-13 18:51:16 +00:00
|
|
|
language: rust
|
2015-05-20 07:04:45 +00:00
|
|
|
rust: nightly
|
2015-04-13 18:51:16 +00:00
|
|
|
sudo: false
|
|
|
|
|
|
|
|
script:
|
2015-08-13 08:32:35 +00:00
|
|
|
- python util/update_lints.py -c
|
2016-03-07 17:40:13 +00:00
|
|
|
- cargo build --features debugging
|
2016-03-15 09:11:56 +00:00
|
|
|
- rm -rf target/ Cargo.lock
|
2015-12-05 08:53:00 +00:00
|
|
|
- cargo test --features debugging
|
2016-03-07 18:08:46 +00: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
|