aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: eb618e1a2043cb1249bed81c879cd3f520da7b60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: rust
sudo: false

rust:
- nightly
- beta
- stable
- 1.45.0

script:
- cargo build
- cargo test
- cargo doc
- if [ $TRAVIS_RUST_VERSION = nightly ]; then rustup target add aarch64-unknown-none; fi
- if [ $TRAVIS_RUST_VERSION = nightly ]; then RUSTFLAGS="-Zcrate-attr=feature(integer_atomics)" cargo check --target=aarch64-unknown-none; fi

notifications:
  email: false