From 6aa7cfae8a16259ba4bd342db61b5e94903e77e6 Mon Sep 17 00:00:00 2001 From: Vincent Thiberville Date: Wed, 1 May 2024 14:47:55 +0200 Subject: [PATCH] ci: fix macos CI by using the macos-13 runner 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. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ae72ace..a4da000 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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" ]