From df3297bb366448dd7207a77eecafefe80baef69d Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Mon, 14 Aug 2023 11:15:59 -0400 Subject: [PATCH] CI: Install llvm@12 with brew on macOS (#1104) 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