appveyor.yml 844 B

123456789101112131415161718192021222324
  1. branches:
  2. only:
  3. - develop
  4. - master
  5. environment:
  6. matrix:
  7. - SCRIPT: ci_boost_status
  8. init:
  9. - cd %APPVEYOR_BUILD_FOLDER%/..
  10. - appveyor DownloadFile "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_common.py"
  11. - appveyor DownloadFile "https://raw.githubusercontent.com/boostorg/release-tools/develop/%SCRIPT%.py"
  12. - cd %APPVEYOR_BUILD_FOLDER%
  13. install: python ../%SCRIPT%.py install
  14. before_build: python ../%SCRIPT%.py before_build
  15. build_script: python ../%SCRIPT%.py build_script
  16. after_build: python ../%SCRIPT%.py after_build
  17. before_test: python ../%SCRIPT%.py before_test
  18. test_script: python ../%SCRIPT%.py test_script
  19. after_test: python ../%SCRIPT%.py after_test
  20. on_success: python ../%SCRIPT%.py on_success
  21. on_failure: python ../%SCRIPT%.py on_failure
  22. on_finish: python ../%SCRIPT%.py on_finish
粤ICP备19079148号