.appveyor.yml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. # Windows Build Configuration for AppVeyor
  2. # http://www.appveyor.com/docs/appveyor-yml
  3. # build version format
  4. version: "{build}"
  5. os: Visual Studio 2015
  6. platform:
  7. - x64
  8. configuration:
  9. - Debug
  10. - Release
  11. branches:
  12. only:
  13. - master
  14. # changes to these files don't need to trigger testing
  15. skip_commits:
  16. files:
  17. - README.md
  18. - README-spirv-remap.txt
  19. - LICENSE.txt
  20. - CODE_OF_CONDUCT.md
  21. - BUILD.*
  22. - WORKSPACE
  23. - kokoro/*
  24. - make-revision
  25. - Android.mk
  26. - _config.yml
  27. # Travis advances the master-tot tag to current top of the tree after
  28. # each push into the master branch, because it relies on that tag to
  29. # upload build artifacts to the master-tot release. This will cause
  30. # double testing for each push on Appveyor: one for the push, one for
  31. # the tag advance. Disable testing tags.
  32. skip_tags: true
  33. clone_depth: 5
  34. matrix:
  35. fast_finish: true # Show final status immediately if a test fails.
  36. # scripts that run after cloning repository
  37. install:
  38. - C:/Python27/python.exe update_glslang_sources.py
  39. - set PATH=C:\ninja;C:\Python36;%PATH%
  40. - git clone https://github.com/google/googletest.git External/googletest
  41. build:
  42. parallel: true # enable MSBuild parallel builds
  43. verbosity: minimal
  44. build_script:
  45. - mkdir build && cd build
  46. - cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_INSTALL_PREFIX=install ..
  47. - cmake --build . --config %CONFIGURATION% --target install
  48. test_script:
  49. - ctest -C %CONFIGURATION% --output-on-failure
  50. - cd ../Test && bash runtests
  51. - cd ../build
  52. after_test:
  53. # For debug build, the generated dll has a postfix "d" in its name.
  54. - ps: >-
  55. If ($env:configuration -Match "Debug") {
  56. $env:SUFFIX="d"
  57. } Else {
  58. $env:SUFFIX=""
  59. }
  60. - cd install
  61. # Zip all glslang artifacts for uploading and deploying
  62. - 7z a glslang-master-windows-"%PLATFORM%"-"%CONFIGURATION%".zip
  63. bin\glslangValidator.exe
  64. bin\spirv-remap.exe
  65. include\glslang\*
  66. lib\GenericCodeGen%SUFFIX%.lib
  67. lib\glslang%SUFFIX%.lib
  68. lib\glslang-default-resource-limits%SUFFIX%.lib
  69. lib\HLSL%SUFFIX%.lib
  70. lib\MachineIndependent%SUFFIX%.lib
  71. lib\OGLCompiler%SUFFIX%.lib
  72. lib\OSDependent%SUFFIX%.lib
  73. lib\SPIRV%SUFFIX%.lib
  74. lib\SPVRemapper%SUFFIX%.lib
  75. lib\SPIRV-Tools%SUFFIX%.lib
  76. lib\SPIRV-Tools-opt%SUFFIX%.lib
  77. artifacts:
  78. - path: build\install\*.zip
  79. name: artifacts-zip
  80. deploy:
  81. - provider: GitHub
  82. auth_token:
  83. secure: YglcSYdl0TylEa59H4K6lylBEDr586NAt2EMgZquSo+iuPrwgZQuJLPCoihSm9y6
  84. release: master-tot
  85. description: "Continuous build of the latest master branch by Appveyor and Travis CI"
  86. artifact: artifacts-zip
  87. draft: false
  88. prerelease: false
  89. force_update: true
  90. on:
  91. branch: master
  92. APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015