rust/.travis.yml

12 lines
335 B
YAML
Raw Normal View History

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:
- python util/update_lints.py -c
2016-03-07 18:40:13 +01: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