Skip to content

Commit

Permalink
ci: fix macos CI by using the macos-13 runner
Browse files Browse the repository at this point in the history
the macos-14 runner is M1 based and thus aarch64, which makes several
matrix jobs fail due to missing vendored bindings.

Fix the jobs by hardcoding the macos version to the one used before the
update of macos-latest to macos-14.
  • Loading branch information
vthib committed May 1, 2024
1 parent 93e802e commit 6aa7cfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
build-macos:
strategy:
matrix:
os: [ macos-latest ]
os: [ macos-13 ]
features: [ "vendored,bindgen", "vendored,bundled-4_5_0" ]
rust: [ stable, nightly ]
cryptolib: [ "OpenSSL", "CommonCrypto", "disabled" ]
Expand Down

0 comments on commit 6aa7cfa

Please sign in to comment.