Skip to content

Commit

Permalink
Skip MSRV test for macOS
Browse files Browse the repository at this point in the history
According to rust-lang/rust#105167 and
rust-lang/rust#107252 (comment),
Xcode 14 broke support for rustc < 1.53.

Backport of commit 8dd37c5.
  • Loading branch information
Thomasdezeeuw committed Aug 13, 2023
1 parent dbba4cb commit b15d301
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,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
Expand Down

0 comments on commit b15d301

Please sign in to comment.