2015-04-14 00:21:16 +05:30
|
|
|
language: rust
|
2015-05-20 12:34:45 +05:30
|
|
|
rust: nightly
|
2015-04-14 00:21:16 +05:30
|
|
|
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
|
2015-12-05 14:23:00 +05:30
|
|
|
- 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
|