From a7c7b1df8a58539a3eec6f9acb3019a2fa222caa Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Sun, 13 Aug 2023 14:22:06 +0200 Subject: [PATCH] Skip MSRV test for macOS According to https://github.com/rust-lang/rust/issues/105167 and https://github.com/rust-lang/rust/issues/107252#issuecomment-1555913390, Xcode 14 broke support for rustc < 1.53. --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e7ad3cb6..490e8fedd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,7 +63,10 @@ jobs: strategy: fail-fast: false matrix: - os: ["ubuntu-latest", "macos-latest", "windows-latest"] + os: ["ubuntu-latest", "windows-latest"] + # TODO: once we update our MSRV above 1.53 add macOS again. Currently + # macOS, specifically Xcode 14, broke support for rustc < 1.53. See + # https://github.com/rust-lang/rust/issues/105167. steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@master