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

ci_container_test.sh 1.3 kB

1234567891011121314151617181920212223242526
  1. awk -F: '/^[^#]/ { print $1 }' requirements/framework.txt | xargs -n 1 pip install -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
  2. awk -F: '/^[^#]/ { print $1 }' requirements/audio.txt | xargs -n 1 pip install -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
  3. awk -F: '/^[^#]/ { print $1 }' requirements/cv.txt | xargs -n 1 pip install -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
  4. awk -F: '/^[^#]/ { print $1 }' requirements/multi-modal.txt | xargs -n 1 pip install -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
  5. awk -F: '/^[^#]/ { print $1 }' requirements/nlp.txt | xargs -n 1 pip install -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
  6. pip install -r requirements/tests.txt
  7. git config --global --add safe.directory /Maas-lib
  8. # linter test
  9. # use internal project for pre-commit due to the network problem
  10. pre-commit run -c .pre-commit-config_local.yaml --all-files
  11. if [ $? -ne 0 ]; then
  12. echo "linter test failed, please run 'pre-commit run --all-files' to check"
  13. exit -1
  14. fi
  15. # test with install
  16. python setup.py install
  17. if [ $# -eq 0 ]; then
  18. ci_command="python tests/run.py --subprocess"
  19. else
  20. ci_command="$@"
  21. fi
  22. echo "Running case with command: $ci_command"
  23. $ci_command