From 0c74bcc7c40a1c9158202727bd2bd696be3977c3 Mon Sep 17 00:00:00 2001 From: Roy Ivy III Date: Mon, 25 May 2020 23:40:58 -0500 Subject: [PATCH] Maint/CICD ~ GHA - disable windows-gnu builds with unresolvable linker errors - `undefined reference to `_imp____acrt_iob_func'` - ref: - ref: - ref: - ref: --- .github/workflows/CICD.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index c63f353c6c..6216132195 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -42,9 +42,9 @@ jobs: - { os: ubuntu-18.04 , target: x86_64-unknown-linux-musl , use-cross: use-cross } - { os: ubuntu-16.04 , target: x86_64-unknown-linux-gnu , use-cross: use-cross } - { os: macos-latest , target: x86_64-apple-darwin } - - { os: windows-latest , target: i686-pc-windows-gnu } + # - { os: windows-latest , target: i686-pc-windows-gnu } ## disabled; linker errors - { os: windows-latest , target: i686-pc-windows-msvc } - - { os: windows-latest , target: x86_64-pc-windows-gnu } ## note: requires rust >= 1.43.0 to link correctly + # - { os: windows-latest , target: x86_64-pc-windows-gnu } ## disabled; linker errors ## note: requires rust >= 1.43.0 to link correctly - { os: windows-latest , target: x86_64-pc-windows-msvc } steps: - uses: actions/checkout@v1