From 6f16e06b1ddb0a7f5e12a890c7564ce34eeae690 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sat, 9 Sep 2023 08:29:16 -0700 Subject: [PATCH] Temporarily disable Windows GNU CI They are currently failing due to what we believe is a bug in the Windows bindings for Rust. For now, disable these until this bug is resolved. Closes #142 Signed-off-by: John Nunley --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1be96a2..d05be7a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,8 +37,10 @@ jobs: platform: - { target: x86_64-pc-windows-msvc, os: windows-latest, } - { target: i686-pc-windows-msvc, os: windows-latest, } - - { target: x86_64-pc-windows-gnu, os: windows-latest, host: -x86_64-pc-windows-gnu } - - { target: i686-pc-windows-gnu, os: windows-latest, host: -i686-pc-windows-gnu } + # TODO: wait for https://github.com/microsoft/windows-rs/issues/2614#issuecomment-1684152597 + # to be resolved before re-enabling these + # - { target: x86_64-pc-windows-gnu, os: windows-latest, host: -x86_64-pc-windows-gnu } + # - { target: i686-pc-windows-gnu, os: windows-latest, host: -i686-pc-windows-gnu } - { target: i686-unknown-linux-gnu, os: ubuntu-latest, } - { target: x86_64-unknown-linux-gnu, os: ubuntu-latest, } - { target: x86_64-unknown-linux-gnu, os: ubuntu-latest, options: --no-default-features, features: "x11,x11-dlopen" }