暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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 "++++++++++++++++++++++++++++++++++++++++++++++++++++"