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