Skip to content

Commit 75c109b

Browse files
committed
Maint/CICD ~ GHA - disable windows-gnu builds with unresolvable linker errors
- `undefined reference to `_imp____acrt_iob_func'` - ref: <rust-lang/rust#68887 (comment)> - ref: <https://users.rust-lang.org/t/linking-with-gcc-failed-exit-code-1/34124> - ref: <https://www.gitmemory.com/issue/rust-lang/rust/47048/530376978> - ref: <https://sourceforge.net/p/mingw-w64/mailman/mingw-w64-public/?limit=250&page=7>
1 parent 5459daf commit 75c109b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/CICD.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ jobs:
4242
- { os: ubuntu-18.04 , target: x86_64-unknown-linux-musl , use-cross: use-cross }
4343
- { os: ubuntu-16.04 , target: x86_64-unknown-linux-gnu , use-cross: use-cross }
4444
- { os: macos-latest , target: x86_64-apple-darwin }
45-
- { os: windows-latest , target: i686-pc-windows-gnu }
45+
# - { os: windows-latest , target: i686-pc-windows-gnu } ## disabled; linker errors
4646
- { os: windows-latest , target: i686-pc-windows-msvc }
47-
- { os: windows-latest , target: x86_64-pc-windows-gnu } ## note: requires rust >= 1.43.0 to link correctly
47+
# - { os: windows-latest , target: x86_64-pc-windows-gnu } ## disabled; linker errors ## note: requires rust >= 1.43.0 to link correctly
4848
- { os: windows-latest , target: x86_64-pc-windows-msvc }
4949
steps:
5050
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)