mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
364 B
YAML
13 lines
364 B
YAML
language: rust
|
|
rust: nightly
|
|
sudo: false
|
|
|
|
script:
|
|
- python util/update_lints.py -c
|
|
- cargo build --features debugging
|
|
- rm -rf target/ Cargo.lock
|
|
- 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
|