Skip to content

Commit a9d4088

Browse files
committed
[WIP] i686-mingw as try
1 parent 335fb1a commit a9d4088

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

.github/workflows/ci.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -579,10 +579,13 @@ jobs:
579579
strategy:
580580
matrix:
581581
include:
582-
- name: dist-x86_64-linux
582+
- name: i686-mingw
583583
env:
584-
CODEGEN_BACKENDS: "llvm,cranelift"
585-
os: ubuntu-20.04-16core-64gb
584+
RUST_CONFIGURE_ARGS: "--build=i686-pc-windows-gnu"
585+
SCRIPT: make ci-mingw
586+
NO_DOWNLOAD_CI_LLVM: 1
587+
CUSTOM_MINGW: 1
588+
os: windows-2019-8core-32gb
586589
timeout-minutes: 600
587590
runs-on: "${{ matrix.os }}"
588591
steps:

src/ci/github-actions/ci.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -732,12 +732,15 @@ jobs:
732732
strategy:
733733
matrix:
734734
include:
735-
- &dist-x86_64-linux
736-
name: dist-x86_64-linux
735+
- name: i686-mingw
737736
env:
738-
CODEGEN_BACKENDS: llvm,cranelift
739-
<<: *job-linux-16c
740-
737+
RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu
738+
SCRIPT: make ci-mingw
739+
# We are intentionally allowing an old toolchain on this builder (and that's
740+
# incompatible with LLVM downloads today).
741+
NO_DOWNLOAD_CI_LLVM: 1
742+
CUSTOM_MINGW: 1
743+
<<: *job-windows-8c
741744

742745
master:
743746
name: master

0 commit comments

Comments
 (0)