Brak opisu
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.

1234567891011121314151617181920
  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. # check that everything compiles and all tests pass
  8. "$MY_PATH/test-rust.sh"
  9. # file existence
  10. echo "=== Checking for Missing Files ======================================="
  11. "$MY_PATH/check-files.py"
  12. echo "++++++++++++++++++++++++++++++++++++++++++++++++++++"
  13. echo "+ Everything is fine! +"
  14. echo "++++++++++++++++++++++++++++++++++++++++++++++++++++"