|
33 | 33 | "value": "x64", |
34 | 34 | "strategy": "external" |
35 | 35 | }, |
36 | | - "toolset":{ |
| 36 | + "toolset": { |
37 | 37 | "value": "host=x64", |
38 | 38 | "strategy": "external" |
39 | 39 | } |
|
122 | 122 | }, |
123 | 123 | { |
124 | 124 | "name": "Windows-msvc-Debug", |
125 | | - "inherits": ["confs-windows-msvc-common", "debug"] |
| 125 | + "inherits": [ |
| 126 | + "confs-windows-msvc-common", |
| 127 | + "debug" |
| 128 | + ] |
126 | 129 | }, |
127 | 130 | { |
128 | 131 | "name": "Windows-msvc-Release", |
129 | | - "inherits": ["confs-windows-msvc-common", "release"] |
| 132 | + "inherits": [ |
| 133 | + "confs-windows-msvc-common", |
| 134 | + "release" |
| 135 | + ] |
130 | 136 | }, |
131 | 137 | { |
132 | 138 | "name": "Windows-llvm-Debug", |
133 | | - "inherits": ["confs-windows-llvm-common", "debug"] |
| 139 | + "inherits": [ |
| 140 | + "confs-windows-llvm-common", |
| 141 | + "debug" |
| 142 | + ] |
134 | 143 | }, |
135 | 144 | { |
136 | 145 | "name": "Windows-llvm-Release", |
137 | | - "inherits": ["confs-windows-llvm-common", "release"] |
| 146 | + "inherits": [ |
| 147 | + "confs-windows-llvm-common", |
| 148 | + "release" |
| 149 | + ] |
138 | 150 | }, |
139 | 151 | { |
140 | 152 | "name": "llvm-Debug", |
141 | | - "inherits": ["confs-linux-llvm-common", "debug"] |
| 153 | + "inherits": [ |
| 154 | + "confs-linux-llvm-common", |
| 155 | + "debug" |
| 156 | + ] |
142 | 157 | }, |
143 | 158 | { |
144 | 159 | "name": "llvm-Release", |
145 | | - "inherits": ["confs-linux-llvm-common", "release"] |
| 160 | + "inherits": [ |
| 161 | + "confs-linux-llvm-common", |
| 162 | + "release" |
| 163 | + ] |
146 | 164 | }, |
147 | 165 | { |
148 | 166 | "name": "gcc-Debug", |
149 | | - "inherits": ["confs-linux-gcc-common", "debug"] |
| 167 | + "inherits": [ |
| 168 | + "confs-linux-gcc-common", |
| 169 | + "debug" |
| 170 | + ] |
150 | 171 | }, |
151 | 172 | { |
152 | 173 | "name": "gcc-Release", |
153 | | - "inherits": ["confs-linux-gcc-common", "release"] |
| 174 | + "inherits": [ |
| 175 | + "confs-linux-gcc-common", |
| 176 | + "release" |
| 177 | + ] |
154 | 178 | } |
155 | 179 | ], |
156 | 180 | "buildPresets": [ |
|
186 | 210 | "name": "gcc-Release", |
187 | 211 | "configurePreset": "gcc-Release" |
188 | 212 | } |
| 213 | + ], |
| 214 | + "testPresets": [ |
| 215 | + { |
| 216 | + "name": "test-Windows-msvc-Debug", |
| 217 | + "description": "Enable output and stop on failure", |
| 218 | + "output": { |
| 219 | + "outputOnFailure": true |
| 220 | + }, |
| 221 | + "execution": { |
| 222 | + "noTestsAction": "error", |
| 223 | + "stopOnFailure": true |
| 224 | + }, |
| 225 | + "configurePreset": "Windows-msvc-Debug" |
| 226 | + }, |
| 227 | + { |
| 228 | + "name": "test-Windows-llvm-Debug", |
| 229 | + "description": "Enable output and stop on failure", |
| 230 | + "output": { |
| 231 | + "outputOnFailure": true |
| 232 | + }, |
| 233 | + "execution": { |
| 234 | + "noTestsAction": "error", |
| 235 | + "stopOnFailure": true |
| 236 | + }, |
| 237 | + "configurePreset": "Windows-llvm-Debug" |
| 238 | + } |
| 239 | + ], |
| 240 | + "workflowPresets": [ |
| 241 | + { |
| 242 | + "name": "Windows-msvc-Debug", |
| 243 | + "steps": [ |
| 244 | + { |
| 245 | + "type": "configure", |
| 246 | + "name": "Windows-msvc-Debug" |
| 247 | + }, |
| 248 | + { |
| 249 | + "type": "build", |
| 250 | + "name": "Windows-msvc-Debug" |
| 251 | + }, |
| 252 | + { |
| 253 | + "type": "test", |
| 254 | + "name": "test-Windows-msvc-Debug" |
| 255 | + } |
| 256 | + ] |
| 257 | + }, |
| 258 | + { |
| 259 | + "name": "Windows-llvm-Debug", |
| 260 | + "steps": [ |
| 261 | + { |
| 262 | + "type": "configure", |
| 263 | + "name": "Windows-llvm-Debug" |
| 264 | + }, |
| 265 | + { |
| 266 | + "type": "build", |
| 267 | + "name": "Windows-llvm-Debug" |
| 268 | + }, |
| 269 | + { |
| 270 | + "type": "test", |
| 271 | + "name": "test-Windows-llvm-Debug" |
| 272 | + } |
| 273 | + ] |
| 274 | + } |
189 | 275 | ] |
190 | 276 | } |
0 commit comments