@@ -223,37 +223,31 @@ jobs:
223
223
matrix :
224
224
# 32/64 bit MSVC tests
225
225
x86_64-msvc-1 :
226
- MSYS_BITS : 64
227
226
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc --enable-profiler
228
227
SCRIPT : make ci-subset-1
229
228
# FIXME(#59637)
230
229
NO_DEBUG_ASSERTIONS : 1
231
230
NO_LLVM_ASSERTIONS : 1
232
231
x86_64-msvc-2 :
233
- MSYS_BITS : 64
234
232
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc --enable-profiler
235
233
SCRIPT : make ci-subset-2
236
234
i686-msvc-1 :
237
- MSYS_BITS : 32
238
235
RUST_CONFIGURE_ARGS : --build=i686-pc-windows-msvc
239
236
SCRIPT : make ci-subset-1
240
237
# FIXME(#59637)
241
238
NO_DEBUG_ASSERTIONS : 1
242
239
NO_LLVM_ASSERTIONS : 1
243
240
i686-msvc-2 :
244
- MSYS_BITS : 32
245
241
RUST_CONFIGURE_ARGS : --build=i686-pc-windows-msvc
246
242
SCRIPT : make ci-subset-2
247
243
# FIXME(#59637)
248
244
NO_DEBUG_ASSERTIONS : 1
249
245
NO_LLVM_ASSERTIONS : 1
250
246
# MSVC aux tests
251
247
x86_64-msvc-aux :
252
- MSYS_BITS : 64
253
248
RUST_CHECK_TARGET : check-aux EXCLUDE_CARGO=1
254
249
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc
255
250
x86_64-msvc-cargo :
256
- MSYS_BITS : 64
257
251
SCRIPT : python x.py test src/tools/cargotest src/tools/cargo
258
252
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc
259
253
VCVARS_BAT : vcvars64.bat
@@ -262,10 +256,8 @@ jobs:
262
256
NO_LLVM_ASSERTIONS : 1
263
257
# MSVC tools tests
264
258
x86_64-msvc-tools :
265
- MSYS_BITS : 64
266
259
SCRIPT : src/ci/docker/x86_64-gnu-tools/checktools.sh x.py /tmp/toolstate/toolstates.json windows
267
260
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc --save-toolstates=/tmp/toolstate/toolstates.json
268
- DEPLOY_TOOLSTATES_JSON : toolstates-windows.json
269
261
270
262
# 32/64-bit MinGW builds.
271
263
#
@@ -281,35 +273,30 @@ jobs:
281
273
# came from the mingw-w64 SourceForge download site. Unfortunately
282
274
# SourceForge is notoriously flaky, so we mirror it on our own infrastructure.
283
275
i686-mingw-1 :
284
- MSYS_BITS : 32
285
276
RUST_CONFIGURE_ARGS : --build=i686-pc-windows-gnu
286
277
SCRIPT : make ci-mingw-subset-1
287
278
CUSTOM_MINGW : 1
288
279
# FIXME(#59637)
289
280
NO_DEBUG_ASSERTIONS : 1
290
281
NO_LLVM_ASSERTIONS : 1
291
282
i686-mingw-2 :
292
- MSYS_BITS : 32
293
283
RUST_CONFIGURE_ARGS : --build=i686-pc-windows-gnu
294
284
SCRIPT : make ci-mingw-subset-2
295
285
CUSTOM_MINGW : 1
296
286
x86_64-mingw-1 :
297
- MSYS_BITS : 64
298
287
SCRIPT : make ci-mingw-subset-1
299
288
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-gnu
300
289
CUSTOM_MINGW : 1
301
290
# FIXME(#59637)
302
291
NO_DEBUG_ASSERTIONS : 1
303
292
NO_LLVM_ASSERTIONS : 1
304
293
x86_64-mingw-2 :
305
- MSYS_BITS : 64
306
294
SCRIPT : make ci-mingw-subset-2
307
295
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-gnu
308
296
CUSTOM_MINGW : 1
309
297
310
298
# 32/64 bit MSVC and GNU deployment
311
299
dist-x86_64-msvc :
312
- MSYS_BITS : 64
313
300
RUST_CONFIGURE_ARGS : >-
314
301
--build=x86_64-pc-windows-msvc
315
302
--target=x86_64-pc-windows-msvc,aarch64-pc-windows-msvc
@@ -319,7 +306,6 @@ jobs:
319
306
DIST_REQUIRE_ALL_TOOLS : 1
320
307
DEPLOY : 1
321
308
dist-i686-msvc :
322
- MSYS_BITS : 32
323
309
RUST_CONFIGURE_ARGS : >-
324
310
--build=i686-pc-windows-msvc
325
311
--target=i586-pc-windows-msvc
@@ -329,14 +315,12 @@ jobs:
329
315
DIST_REQUIRE_ALL_TOOLS : 1
330
316
DEPLOY : 1
331
317
dist-i686-mingw :
332
- MSYS_BITS : 32
333
318
RUST_CONFIGURE_ARGS : --build=i686-pc-windows-gnu --enable-full-tools --enable-profiler
334
319
SCRIPT : python x.py dist
335
320
CUSTOM_MINGW : 1
336
321
DIST_REQUIRE_ALL_TOOLS : 1
337
322
DEPLOY : 1
338
323
dist-x86_64-mingw :
339
- MSYS_BITS : 64
340
324
SCRIPT : python x.py dist
341
325
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-gnu --enable-full-tools --enable-profiler
342
326
CUSTOM_MINGW : 1
@@ -345,7 +329,6 @@ jobs:
345
329
346
330
# "alternate" deployment, see .travis.yml for more info
347
331
dist-x86_64-msvc-alt :
348
- MSYS_BITS : 64
349
332
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc --enable-extended --enable-profiler
350
333
SCRIPT : python x.py dist
351
334
DEPLOY_ALT : 1
0 commit comments