• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1language: rust
2sudo: false
3
4rust:
5- nightly
6- beta
7- stable
8- 1.45.0
9
10script:
11- cargo build
12- cargo test
13- cargo doc
14- if [ $TRAVIS_RUST_VERSION = nightly ]; then rustup target add aarch64-unknown-none; fi
15- if [ $TRAVIS_RUST_VERSION = nightly ]; then RUSTFLAGS="-Zcrate-attr=feature(integer_atomics)" cargo check --target=aarch64-unknown-none; fi
16
17notifications:
18  email: false
19