We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9ca317 commit e35890aCopy full SHA for e35890a
.github/workflows/ci.yml
@@ -83,6 +83,11 @@ jobs:
83
- if: contains(matrix.os, 'windows')
84
uses: msys2/[email protected]
85
with:
86
+ # FIXME(#136795): this mingw installation seems to be needed for
87
+ # `i686-pc-windows-gnu`, otherwise we somehow incorrectly link to
88
+ # 64-bit `libwinpthread-1.dll` and then `rustc` can't find the 32-bit
89
+ # version it wants.
90
+ #
91
# i686 jobs use mingw32. x86_64 and cross-compile jobs use mingw64.
92
msystem: ${{ contains(matrix.name, 'i686') && 'mingw32' || 'mingw64' }}
93
# don't try to download updates for already installed packages
0 commit comments