From fe989ba94dae321390068fbfa56f4a34498ebce7 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Sun, 3 Mar 2024 20:42:18 +0100 Subject: [PATCH] WIP: fix CI failure --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6fae1c7..6a6f91c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,6 +18,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 + - name: install Clang + # Note: picking LLVM 15 because that's the one currently included in + # macos-latest. This probably needs an update in the future. + run: brew install llvm - name: Run tests run: make test CLANG=$(brew --prefix llvm)/bin/clang Test-Windows: