2
0

.travis.yml 389 B

12345678910111213141516
  1. language: rust
  2. env:
  3. -
  4. - TARGET=aarch64-unknown-linux-gnu
  5. - TARGET=x86_64-unknown-redox
  6. rust:
  7. - nightly
  8. install:
  9. - if [ $TARGET == "aarch64-unknown-linux-gnu" ]; then sudo apt-get install gcc-aarch64-linux-gnu; fi
  10. before_script:
  11. - rustup component add rustfmt-preview
  12. - if [ -n "$TARGET" ]; then rustup target add $TARGET; fi
  13. script:
  14. - ./ci.sh
  15. notifications:
  16. email: false