Skip to content

Commit 2b0f51b

Browse files
committed
Disable Linux MinGW cross-compilation testing for now
1 parent 6b220e5 commit 2b0f51b

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,10 @@ jobs:
4444
env:
4545
TARGET_TRIPLE: x86_64-apple-darwin
4646
# cross-compile from Linux to Windows using mingw
47-
- os: ubuntu-latest
48-
env:
49-
TARGET_TRIPLE: x86_64-pc-windows-gnu
47+
# FIXME The wine version in Ubuntu 22.04 is missing ProcessPrng
48+
#- os: ubuntu-latest
49+
# env:
50+
# TARGET_TRIPLE: x86_64-pc-windows-gnu
5051
- os: ubuntu-latest
5152
env:
5253
TARGET_TRIPLE: aarch64-unknown-linux-gnu
@@ -80,11 +81,11 @@ jobs:
8081
if: matrix.os == 'windows-latest' && matrix.env.TARGET_TRIPLE == 'x86_64-pc-windows-gnu'
8182
run: rustup set default-host x86_64-pc-windows-gnu
8283

83-
- name: Install MinGW toolchain and wine
84-
if: matrix.os == 'ubuntu-latest' && matrix.env.TARGET_TRIPLE == 'x86_64-pc-windows-gnu'
85-
run: |
86-
sudo apt-get update
87-
sudo apt-get install -y gcc-mingw-w64-x86-64 wine-stable
84+
#- name: Install MinGW toolchain and wine
85+
# if: matrix.os == 'ubuntu-latest' && matrix.env.TARGET_TRIPLE == 'x86_64-pc-windows-gnu'
86+
# run: |
87+
# sudo apt-get update
88+
# sudo apt-get install -y gcc-mingw-w64-x86-64 wine-stable
8889

8990
- name: Install AArch64 toolchain and qemu
9091
if: matrix.os == 'ubuntu-latest' && matrix.env.TARGET_TRIPLE == 'aarch64-unknown-linux-gnu'

0 commit comments

Comments
 (0)