From 6616fb6459e173f8fbedc3eb2776b9ff8bd75d20 Mon Sep 17 00:00:00 2001 From: Patrick Mooney Date: Wed, 14 Jun 2023 13:31:31 -0500 Subject: [PATCH] Exclude failing macos case from GHA config --- .github/workflows/cargo-test.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/cargo-test.yaml b/.github/workflows/cargo-test.yaml index f940388..7048ed7 100644 --- a/.github/workflows/cargo-test.yaml +++ b/.github/workflows/cargo-test.yaml @@ -19,6 +19,10 @@ jobs: rust: stable-i686 - os: windows-latest rust: stable-x86_64-gnu + exclude: + # rust/libc does not appear to link on macos-latest with rust 1.21.0 + - os: macos-latest + rust: 1.21.0 steps: - name: Checkout sources uses: actions/checkout@v3