blob: a50c7c2a9d498ec5124c76c16441c9ed6d0be5d7 [file] [log] [blame]
Lei Zhangc7551e12016-05-17 09:02:45 -04001# Windows Build Configuration for AppVeyor
2# http://www.appveyor.com/docs/appveyor-yml
3
4# version format
5version: "{build}"
6
David Neto059fe082017-12-11 15:50:51 -05007# The most recent compiler gives the most interesting new results.
8# Put it first so we get its feedback first.
Lei Zhang478d96a2016-08-10 10:12:14 -04009os:
David Neto65b180f2017-08-01 11:42:28 -040010 - Visual Studio 2017
Ehsan Nasiri6e550f42018-07-10 12:48:23 -040011 #- Visual Studio 2013
Lei Zhangc7551e12016-05-17 09:02:45 -040012
13platform:
Lei Zhang651ba752017-11-08 16:44:53 -050014 - x64
Lei Zhangc7551e12016-05-17 09:02:45 -040015
16configuration:
17 - Debug
Ehsan Nasiri6e550f42018-07-10 12:48:23 -040018 #- Release
Lei Zhangc7551e12016-05-17 09:02:45 -040019
20branches:
21 only:
22 - master
23
Lei Zhang0126ad92017-11-14 09:18:42 -050024# Travis advances the master-tot tag to current top of the tree after
25# each push into the master branch, because it relies on that tag to
26# upload build artifacts to the master-tot release. This will cause
27# double testing for each push on Appveyor: one for the push, one for
28# the tag advance. Disable testing tags.
29skip_tags: true
30
Lei Zhangb8aeab82017-11-30 21:12:23 -050031clone_depth: 1
Lei Zhangc7551e12016-05-17 09:02:45 -040032
33matrix:
34 fast_finish: true # Show final status immediately if a test fails.
Ehsan Nasiri6e550f42018-07-10 12:48:23 -040035 #exclude:
36 # - os: Visual Studio 2013
37 # configuration: Debug
Lei Zhangc7551e12016-05-17 09:02:45 -040038
39# scripts that run after cloning repository
40install:
Lei Zhangb8aeab82017-11-30 21:12:23 -050041 # Install ninja
42 - set NINJA_URL="https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-win.zip"
43 - appveyor DownloadFile %NINJA_URL% -FileName ninja.zip
44 - 7z x ninja.zip -oC:\ninja > nul
45 - set PATH=C:\ninja;%PATH%
46
47before_build:
48 - git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers.git external/spirv-headers
alan-bakera78fa092018-09-27 09:44:01 -040049 - git clone --depth=1 https://github.com/google/googletest.git external/googletest
Lei Zhangb8aeab82017-11-30 21:12:23 -050050 - git clone --depth=1 https://github.com/google/effcee.git external/effcee
51 - git clone --depth=1 https://github.com/google/re2.git external/re2
52 # Set path and environment variables for the current Visual Studio version
David Netob1c9c4e2018-02-06 08:13:39 -080053 - if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2013" (call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86_amd64)
Lei Zhangb8aeab82017-11-30 21:12:23 -050054 - if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" (call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64)
Lei Zhangc7551e12016-05-17 09:02:45 -040055
56build:
57 parallel: true # enable MSBuild parallel builds
58 verbosity: minimal
59
60build_script:
61 - mkdir build && cd build
David Netob1c9c4e2018-02-06 08:13:39 -080062 - cmake -GNinja -DSPIRV_BUILD_COMPRESSION=ON -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DCMAKE_INSTALL_PREFIX=install -DRE2_BUILD_TESTING=OFF ..
Lei Zhangb8aeab82017-11-30 21:12:23 -050063 - ninja install
Lei Zhangc7551e12016-05-17 09:02:45 -040064
65test_script:
Andrey Tuganov66fc1052017-05-30 13:29:13 -040066 - ctest -C %CONFIGURATION% --output-on-failure --timeout 300
Lei Zhang651ba752017-11-08 16:44:53 -050067
68after_test:
69 # Zip build artifacts for uploading and deploying
70 - cd install
71 - 7z a SPIRV-Tools-master-windows-"%PLATFORM%"-"%CONFIGURATION%".zip *\*
72
73artifacts:
74 - path: build\install\*.zip
75 name: artifacts-zip
76
77deploy:
78 - provider: GitHub
79 auth_token:
80 secure: TMfcScKzzFIm1YgeV/PwCRXFDCw8Xm0wY2Vb2FU6WKlbzb5eUITTpr6I5vHPnAxS
81 release: master-tot
82 description: "Continuous build of the latest master branch by Appveyor and Travis CI"
83 artifact: artifacts-zip
84 draft: false
85 prerelease: false
86 force_update: true
87 on:
88 branch: master
89 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017