forked from google/shaderc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
58 lines (47 loc) · 1.58 KB
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Windows Build Configuration for AppVeyor
# http://www.appveyor.com/docs/appveyor-yml
# version format
version: "{build}"
platform:
- x64
environment:
PYTHON_PATH: "C:/Python27"
PYTHON_PACKAGE_PATH: "C:/Python27/Scripts"
configuration:
- Debug
- Release
branches:
only:
- master
# scripts that are called at very beginning, before repo cloning
init:
- ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
- "%PYTHON_PATH%/python.exe C:/get-pip.py"
- "%PYTHON_PACKAGE_PATH%/pip.exe install nose"
# scripts that run after cloning repository
install:
- git clone https://github.com/google/googletest.git third_party/googletest
- git clone https://github.com/google/glslang.git third_party/glslang
- git clone https://github.com/KhronosGroup/SPIRV-Tools.git third_party/spirv-tools
- git clone https://github.com/KhronosGroup/SPIRV-Headers.git third_party/spirv-tools/external/spirv-headers
build:
parallel: true # enable MSBuild parallel builds
verbosity: minimal
build_script:
- mkdir build && cd build
- cmake .. -DCMAKE_INSTALL_PREFIX=install
- cmake --build . --target install --config %CONFIGURATION%
test_script:
- ctest -C %CONFIGURATION% --output-on-failure
notifications:
- provider: Email
to:
- antiagainst@google.com
- awoloszyn@google.com
- deki@google.com
- dneto@google.com
- qining@google.com
subject: 'Shaderc Windows Build #{{buildVersion}}: {{status}}'
on_build_success: false
on_build_failure: true
on_build_status_changed: true