.travis.yml 277 B

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