From 46a90a70efdf1b9a83cfc682b81d4eda98872f89 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 11 Aug 2023 14:56:19 -0400 Subject: [PATCH] CI: Install llvm@12 with brew on macOS This is done for two reasons: 1. It provides a workaround for https://github.com/Homebrew/brew/issues/15859 (which causes `brew install llvm@11` to fail) until a fix becomes available. Practically speaking, this means that the nightly Crux builds will work once again. 2. It means that our CI consistently tests against LLVM 12 on both Linux and macOS. --- .github/ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ci.sh b/.github/ci.sh index 326513d8b..e732e1764 100755 --- a/.github/ci.sh +++ b/.github/ci.sh @@ -66,7 +66,7 @@ install_llvm() { if [[ "$RUNNER_OS" = "Linux" ]]; then sudo apt-get update -q && sudo apt-get install -y clang-12 llvm-12-tools elif [[ "$RUNNER_OS" = "macOS" ]]; then - brew install llvm@11 + brew install llvm@12 elif [[ "$RUNNER_OS" = "Windows" ]]; then choco install llvm else