forked from microsoft/ShaderConductor
-
Notifications
You must be signed in to change notification settings - Fork 63
/
azure-pipelines.yml
272 lines (235 loc) · 7.58 KB
/
azure-pipelines.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
variables:
configuration: Release
platform: x64
resources:
- repo: self
fetchDepth: 5
stages:
- stage: ClangFormat
jobs:
- job: ClangFormat
pool:
vmImage: Ubuntu-18.04
variables:
CC: gcc
CXX: g++
steps:
- bash: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install clang-format-9 ninja-build python3
displayName: 'Install'
- task: PythonScript@0
displayName: 'Build'
inputs:
scriptPath: BuildAll.py
arguments: 'ninja gcc linux clangformat'
- script: |
git diff --exit-code $(Build.SourceVersion)
failOnStderr: true
displayName: 'Clang-Format'
- stage: Build
condition: succeeded('ClangFormat')
jobs:
- job: Windows_vc140_x64
pool:
vmImage: VS2017-Win2016
variables:
compiler: vc140
combination: 'win-$(compiler)-$(platform)-$(configuration)'
buildFolder: 'Build/ninja-$(combination)'
installCommand: 'choco install ninja python3'
testCommand: './$(buildFolder)/Bin/ShaderConductorTest.exe'
artifactBinaries: |
Bin/ShaderConductor.dll
Bin/ShaderConductorCmd.exe
Bin/dxcompiler.dll
Lib/ShaderConductor.lib
steps:
- template: CI/AzurePipelines/ContinuousBuild.yml
- job: Windows_vc141_x86
pool:
vmImage: VS2017-Win2016
variables:
compiler: vc141
platform: x86
combination: 'win-$(compiler)-$(platform)-$(configuration)'
buildFolder: 'Build/ninja-$(combination)'
installCommand: 'choco install ninja python3'
testCommand: './$(buildFolder)/Bin/ShaderConductorTest.exe'
artifactBinaries: |
Bin/ShaderConductor.dll
Bin/ShaderConductorCmd.exe
Bin/dxcompiler.dll
Lib/ShaderConductor.lib
steps:
- template: CI/AzurePipelines/ContinuousBuild.yml
- job: Windows_vc141_x64
pool:
vmImage: VS2017-Win2016
variables:
compiler: vc141
combination: 'win-$(compiler)-$(platform)-$(configuration)'
buildFolder: 'Build/ninja-$(combination)'
installCommand: 'choco install ninja python3'
testCommand: './$(buildFolder)/Bin/ShaderConductorTest.exe'
artifactBinaries: |
Bin/ShaderConductor.dll
Bin/ShaderConductorCmd.exe
Bin/dxcompiler.dll
Lib/ShaderConductor.lib
steps:
- template: CI/AzurePipelines/ContinuousBuild.yml
- job: Windows_vc142_x86
pool:
vmImage: windows-2019
variables:
compiler: vc142
platform: x86
combination: 'win-$(compiler)-$(platform)-$(configuration)'
buildFolder: 'Build/ninja-$(combination)'
installCommand: 'choco install ninja'
testCommand: './$(buildFolder)/Bin/ShaderConductorTest.exe'
artifactBinaries: |
Bin/ShaderConductor.dll
Bin/ShaderConductorCmd.exe
Bin/dxcompiler.dll
Lib/ShaderConductor.lib
steps:
- template: CI/AzurePipelines/ContinuousBuild.yml
- job: Windows_vc142_x64
pool:
vmImage: windows-2019
variables:
compiler: vc142
combination: 'win-$(compiler)-$(platform)-$(configuration)'
buildFolder: 'Build/ninja-$(combination)'
installCommand: 'choco install ninja'
testCommand: './$(buildFolder)/Bin/ShaderConductorTest.exe'
artifactBinaries: |
Bin/ShaderConductor.dll
Bin/ShaderConductorCmd.exe
Bin/dxcompiler.dll
Lib/ShaderConductor.lib
steps:
- template: CI/AzurePipelines/ContinuousBuild.yml
- job: Windows_vc142_arm64
pool:
vmImage: windows-2019
variables:
compiler: vc142
platform: arm64
combination: 'win-$(compiler)-$(platform)-$(configuration)'
buildFolder: 'Build/ninja-$(combination)'
installCommand: 'choco install ninja'
testCommand: ''
artifactBinaries: |
Bin/ShaderConductor.dll
Bin/ShaderConductorCmd.exe
Bin/dxcompiler.dll
Lib/ShaderConductor.lib
steps:
- template: CI/AzurePipelines/ContinuousBuild.yml
- job: Linux_gcc7
pool:
vmImage: Ubuntu-18.04
variables:
compiler: gcc7
combination: 'linux-$(compiler)-$(platform)-$(configuration)'
buildFolder: 'Build/ninja-$(combination)'
installCommand: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install g++-7 ninja-build python3
testCommand: './$(buildFolder)/Bin/ShaderConductorTest'
artifactBinaries: |
Bin/ShaderConductorCmd
Lib/libdxcompiler.so
Lib/libShaderConductor.so
CC: gcc-7
CXX: g++-7
steps:
- template: CI/AzurePipelines/ContinuousBuild.yml
- job: Linux_gcc8
pool:
vmImage: Ubuntu-18.04
variables:
compiler: gcc8
combination: 'linux-$(compiler)-$(platform)-$(configuration)'
buildFolder: 'Build/ninja-$(combination)'
installCommand: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install g++-8 ninja-build python3
testCommand: './$(buildFolder)/Bin/ShaderConductorTest'
artifactBinaries: |
Bin/ShaderConductorCmd
Lib/libdxcompiler.so
Lib/libShaderConductor.so
CC: gcc-8
CXX: g++-8
steps:
- template: CI/AzurePipelines/ContinuousBuild.yml
- job: Linux_clang7
pool:
vmImage: Ubuntu-18.04
variables:
compiler: clang7
combination: 'linux-$(compiler)-$(platform)-$(configuration)'
buildFolder: 'Build/ninja-$(combination)'
installCommand: |
wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-7 main"
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install clang-7 libc++-7-dev libc++abi-7-dev lld-7 ninja-build python3
testCommand: './$(buildFolder)/Bin/ShaderConductorTest'
artifactBinaries: |
Bin/ShaderConductorCmd
Lib/libdxcompiler.so
Lib/libShaderConductor.so
CC: clang-7
CXX: clang++-7
steps:
- template: CI/AzurePipelines/ContinuousBuild.yml
- job: Linux_clang8
pool:
vmImage: Ubuntu-18.04
variables:
compiler: clang8
combination: 'linux-$(compiler)-$(platform)-$(configuration)'
buildFolder: 'Build/ninja-$(combination)'
installCommand: |
wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-8 main"
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install clang-8 libc++-8-dev libc++abi-8-dev lld-8 ninja-build python3
testCommand: './$(buildFolder)/Bin/ShaderConductorTest'
artifactBinaries: |
Bin/ShaderConductorCmd
Lib/libdxcompiler.so
Lib/libShaderConductor.so
CC: clang-8
CXX: clang++-8
steps:
- template: CI/AzurePipelines/ContinuousBuild.yml
- job: macOS_10_clang
pool:
vmImage: macOS 10.14
variables:
compiler: clang9
combination: 'osx-$(compiler)-$(platform)-$(configuration)'
buildFolder: 'Build/ninja-$(combination)'
installCommand: |
brew update
brew install ninja
testCommand: './$(buildFolder)/Bin/ShaderConductorTest'
artifactBinaries: |
Bin/ShaderConductorCmd
Lib/libdxcompiler.dylib
Lib/libShaderConductor.dylib
CC: clang
CXX: clang++
steps:
- template: CI/AzurePipelines/ContinuousBuild.yml