2
0

.travis.yml 632 B

123456789101112131415161718192021222324252627282930313233343536
  1. language: rust
  2. rust:
  3. - stable
  4. - beta
  5. - nightly
  6. matrix:
  7. allow_failures:
  8. - rust: stable
  9. - rust: beta
  10. fast_finish: true
  11. branches:
  12. only:
  13. # This is where pull requests from "bors r+" are build
  14. - staging
  15. # This is where pull requests from "bors try" are build
  16. - trying
  17. # This allows building of pull requests
  18. - master
  19. before_install:
  20. - sudo apt-get install -y acpica-tools
  21. before_script:
  22. - rustup component add rustfmt-preview
  23. script:
  24. - cargo fmt --all -- --check
  25. - cargo build --all
  26. - cargo test --all
  27. - cargo run --bin aml_tester -- -p tests
  28. notifications:
  29. email: change