File tree 2 files changed +25
-3
lines changed
2 files changed +25
-3
lines changed Original file line number Diff line number Diff line change @@ -537,6 +537,18 @@ jobs:
537
537
- name : dist-x86_64-linux
538
538
os : ubuntu-latest-xl
539
539
env : {}
540
+ - name : dist-i686-mingw
541
+ env :
542
+ RUST_CONFIGURE_ARGS : " --build=i686-pc-windows-gnu"
543
+ SCRIPT : python x.py dist
544
+ CUSTOM_MINGW : 1
545
+ os : windows-latest-xl
546
+ - name : dist-x86_64-mingw
547
+ env :
548
+ SCRIPT : python x.py dist
549
+ RUST_CONFIGURE_ARGS : " --build=x86_64-pc-windows-gnu"
550
+ CUSTOM_MINGW : 1
551
+ os : windows-latest-xl
540
552
timeout-minutes : 600
541
553
runs-on : " ${{ matrix.os }}"
542
554
steps :
Original file line number Diff line number Diff line change 14
14
# step CI will fail.
15
15
16
16
---
17
-
18
17
# ##############################
19
18
# YAML Anchors Definition #
20
19
# ##############################
30
29
# The expand-yaml-anchors tool will automatically remove this block from the
31
30
# output YAML file.
32
31
x--expand-yaml-anchors--remove :
33
-
34
32
- &shared-ci-variables
35
33
CI_JOB_NAME : ${{ matrix.name }}
36
34
@@ -77,7 +75,7 @@ x--expand-yaml-anchors--remove:
77
75
<< : *base-job
78
76
79
77
- &job-macos-xl
80
- os : macos-latest # We don't have an XL builder for this
78
+ os : macos-latest # We don't have an XL builder for this
81
79
<< : *base-job
82
80
83
81
- &job-windows-xl
@@ -669,6 +667,18 @@ jobs:
669
667
matrix :
670
668
include :
671
669
- *dist-x86_64-linux
670
+ - name : dist-i686-mingw
671
+ env :
672
+ RUST_CONFIGURE_ARGS : --build=i686-pc-windows-gnu
673
+ SCRIPT : python x.py dist
674
+ CUSTOM_MINGW : 1
675
+ << : *job-windows-xl
676
+ - name : dist-x86_64-mingw
677
+ env :
678
+ SCRIPT : python x.py dist
679
+ RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-gnu
680
+ CUSTOM_MINGW : 1
681
+ << : *job-windows-xl
672
682
673
683
master :
674
684
name : master
You can’t perform that action at this time.
0 commit comments