rust/.travis.yml

12 lines
335 B
YAML
Raw Normal View History

2015-04-13 13:51:16 -05:00
language: rust
2015-05-20 02:04:45 -05:00
rust: nightly
2015-04-13 13:51:16 -05:00
sudo: false
script:
- python util/update_lints.py -c
2016-03-07 11:40:13 -06:00
- cargo build --features debugging
- cargo test --features debugging
# 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