From 9999320cd0dd9eae3aee10d89cb6800013e97230 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Sat, 18 Apr 2026 09:11:28 +0200 Subject: [PATCH] build: actually use the version of llvm we are supposed to be testing by using brew link command Signed-off-by: deadprogram --- .github/workflows/build-macos.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 83ecf9cf5..13a87a35d 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -116,7 +116,7 @@ jobs: version: [16, 17, 18, 19, 20] steps: - name: Set up Homebrew - uses: Homebrew/actions/setup-homebrew@master + uses: Homebrew/actions/setup-homebrew@main - name: Fix Python symlinks run: | # Github runners have broken symlinks, so relink @@ -125,6 +125,7 @@ jobs: - name: Install LLVM run: | brew install llvm@${{ matrix.version }} + brew link llvm@${{ matrix.version }} - name: Checkout uses: actions/checkout@v6 - name: Install Go