.travis.yml 287 B

12345678910111213
  1. language: rust
  2. rust:
  3. - nightly
  4. cache: cargo
  5. before_script:
  6. - rustup component add rustfmt-preview
  7. - rustup target add x86_64-unknown-redox
  8. script:
  9. - bash ./fmt.sh -- --write-mode=diff
  10. - bash ./test.sh
  11. - cargo build --target=x86_64-unknown-redox
  12. notifications:
  13. email: false