Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

run-travis.sh 593B

1234567891011121314151617181920212223
  1. #!/usr/bin/env bash
  2. # Exit script on the first error
  3. set -o errexit -o nounset
  4. MY_PATH="$(dirname "$0")"
  5. # basic style check
  6. "$MY_PATH/check-basic-style.py"
  7. # rustfmt style check
  8. "$MY_PATH/rustfmt.sh"
  9. # check that everything compiles and all tests pass
  10. "$MY_PATH/test-rust.sh"
  11. # file existence
  12. echo "=== Checking for Missing Files ======================================="
  13. "$MY_PATH/check-files.py" || true
  14. echo "++++++++++++++++++++++++++++++++++++++++++++++++++++"
  15. echo "+ Everything is fine! +"
  16. echo "++++++++++++++++++++++++++++++++++++++++++++++++++++"