From 8163c1484d19b5fcb8b79e602de2b20a15cbd1cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Fri, 26 Apr 2024 23:48:58 +0200 Subject: [PATCH] fixup! fixup! ci: Try to fix macOS runner --- .github/workflows/bindgen.yml | 2 +- ci/test.sh | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bindgen.yml b/.github/workflows/bindgen.yml index bc3944f945..a5f501d50a 100644 --- a/.github/workflows/bindgen.yml +++ b/.github/workflows/bindgen.yml @@ -179,7 +179,7 @@ jobs: # Ensure stuff works on macos too - os: macos-latest - llvm_version: "16.0" + llvm_version: "17.0" release_build: 0 no_default_features: 0 feature_extra_asserts: 0 diff --git a/ci/test.sh b/ci/test.sh index b390b0bdc8..e4aa3c0ee4 100755 --- a/ci/test.sh +++ b/ci/test.sh @@ -24,9 +24,10 @@ function llvm_macos_target_triple() { function llvm_version_triple() { case "$1" in - 9.0) echo "9.0.1" ;; + 9.0) echo "9.0.1" ;; + 17.0) echo "17.0.6" ;; # By default, take the .0 patch release - *) echo "$1.0" ;; + *) echo "$1.0" ;; esac }