@@ -97,103 +97,63 @@ jobs:
97
97
inputs :
98
98
cwd : ' $(Build.SourcesDirectory)'
99
99
cmakeArgs : --build out2 -v --config RelWithDebInfo
100
- - task : CMake@1
101
- displayName : ' CMake (MSVC): Config ARM64'
102
- inputs :
103
- cwd : ' $(Build.SourcesDirectory)'
104
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A ARM64 -B out3 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF'
105
- - task : CMake@1
106
- displayName : ' CMake (MSVC): Build ARM64 Debug'
107
- inputs :
108
- cwd : ' $(Build.SourcesDirectory)'
109
- cmakeArgs : --build out3 -v --config Debug
110
- - task : CMake@1
111
- displayName : ' CMake (MSVC): Build ARM64 Release'
112
- inputs :
113
- cwd : ' $(Build.SourcesDirectory)'
114
- cmakeArgs : --build out3 -v --config RelWithDebInfo
115
100
- task : CMake@1
116
101
displayName : ' CMake (UWP): Config x64'
117
102
inputs :
118
103
cwd : ' $(Build.SourcesDirectory)'
119
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -B out4 -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=10.0'
104
+ cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -B out3 -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=10.0'
120
105
- task : CMake@1
121
106
displayName : ' CMake (UWP): Build x64'
122
107
inputs :
123
108
cwd : ' $(Build.SourcesDirectory)'
124
- cmakeArgs : --build out4 -v
109
+ cmakeArgs : --build out3 -v
125
110
- task : CMake@1
126
111
displayName : ' CMake (ClangCl): Config x64'
127
112
inputs :
128
113
cwd : ' $(Build.SourcesDirectory)'
129
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -T clangcl -B out6 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
114
+ cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -T clangcl -B out4 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
130
115
- task : CMake@1
131
116
displayName : ' CMake (ClangCl): Build x64 Debug'
132
117
inputs :
133
118
cwd : ' $(Build.SourcesDirectory)'
134
- cmakeArgs : --build out6 -v --config Debug
119
+ cmakeArgs : --build out4 -v --config Debug
135
120
- task : CMake@1
136
121
displayName : ' CMake (ClangCl): Build x64 Release'
137
122
inputs :
138
123
cwd : ' $(Build.SourcesDirectory)'
139
- cmakeArgs : --build out6 -v --config RelWithDebInfo
140
- - task : CMake@1
141
- displayName : ' CMake (ClangCl): Config ARM64'
142
- inputs :
143
- cwd : ' $(Build.SourcesDirectory)'
144
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A ARM64 -T clangcl -B out7 -DCMAKE_SYSTEM_VERSION=$(WIN11_SDK)'
145
- - task : CMake@1
146
- displayName : ' CMake (ClangCl): Build ARM64'
147
- inputs :
148
- cwd : ' $(Build.SourcesDirectory)'
149
- cmakeArgs : --build out7 -v --config Debug
124
+ cmakeArgs : --build out4 -v --config RelWithDebInfo
150
125
- task : CMake@1
151
126
displayName : ' CMake (Win10): Config'
152
127
inputs :
153
128
cwd : ' $(Build.SourcesDirectory)'
154
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -B out8 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=ON'
129
+ cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -B out5 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=ON'
155
130
- task : CMake@1
156
131
displayName : ' CMake (Win10): Build'
157
132
inputs :
158
133
cwd : ' $(Build.SourcesDirectory)'
159
- cmakeArgs : --build out8 -v --config Debug
134
+ cmakeArgs : --build out5 -v --config Debug
160
135
- task : CMake@1
161
136
displayName : ' CMake (MSVC Spectre): Config x64'
162
137
inputs :
163
138
cwd : ' $(Build.SourcesDirectory)'
164
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -B out9 -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF'
139
+ cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -B out6 -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF'
165
140
- task : CMake@1
166
141
displayName : ' CMake (MSVC Spectre): Build x64 Debug'
167
142
inputs :
168
143
cwd : ' $(Build.SourcesDirectory)'
169
- cmakeArgs : --build out9 -v --config Debug
144
+ cmakeArgs : --build out6 -v --config Debug
170
145
- task : CMake@1
171
146
displayName : ' CMake (MSVC Spectre): Build x64 Release'
172
147
inputs :
173
148
cwd : ' $(Build.SourcesDirectory)'
174
- cmakeArgs : --build out9 -v --config RelWithDebInfo
175
- - task : CMake@1
176
- displayName : ' CMake (MSVC Spectre): Config ARM64'
177
- inputs :
178
- cwd : ' $(Build.SourcesDirectory)'
179
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A ARM64 -B out10 -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=OFF'
180
- - task : CMake@1
181
- displayName : ' CMake (MSVC Spectre): Build ARM64 Debug'
182
- inputs :
183
- cwd : ' $(Build.SourcesDirectory)'
184
- cmakeArgs : --build out10 -v --config Debug
185
- - task : CMake@1
186
- displayName : ' CMake (MSVC Spectre): Build ARM64 Release'
187
- inputs :
188
- cwd : ' $(Build.SourcesDirectory)'
189
- cmakeArgs : --build out10 -v --config RelWithDebInfo
149
+ cmakeArgs : --build out6 -v --config RelWithDebInfo
190
150
- task : CMake@1
191
151
displayName : ' CMake (Win10 Spectre): Config'
192
152
inputs :
193
153
cwd : ' $(Build.SourcesDirectory)'
194
- cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -B out11 -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=ON'
154
+ cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -B out7 -DENABLE_SPECTRE_MITIGATION=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK) -DBUILD_DX12=ON'
195
155
- task : CMake@1
196
156
displayName : ' CMake (Win10 Spectre): Build'
197
157
inputs :
198
158
cwd : ' $(Build.SourcesDirectory)'
199
- cmakeArgs : --build out11 -v --config Debug
159
+ cmakeArgs : --build out7 -v --config Debug
0 commit comments