From c647e2fcef9d3770e83d961a84a18b31dcc0807c Mon Sep 17 00:00:00 2001 From: Martijn Gribnau Date: Thu, 14 Dec 2023 15:27:59 +0100 Subject: [PATCH] chore: Disable testing on stable-x86_64-gnu altogether because of persisting linking issues --- .github/workflows/test.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0072f927..6c216df2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - build: [ubuntu-stable, macos-stable, win-gnu-stable, win-msvc-stable, ubuntu-beta] + build: [ubuntu-stable, macos-stable, win-msvc-stable, ubuntu-beta] # win-gnu-stable include: - build: ubuntu-stable os: ubuntu-latest @@ -27,9 +27,12 @@ jobs: os: macOS-latest rust: stable - - build: win-gnu-stable - os: windows-latest - rust: stable-x86_64-gnu + # FIXME: This is currently broken, see below. + # * https://github.com/foresterre/cargo-msrv/pull/842 + # * https://github.com/rust-lang/rust/issues/112368 +# - build: win-gnu-stable +# os: windows-latest +# rust: stable-x86_64-gnu - build: win-msvc-stable os: windows-latest