From be760250e6745aeaf26f520a39e6e483d6b1fcae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Warzy=C5=84ski?= Date: Sun, 13 Oct 2024 16:45:57 +0100 Subject: [PATCH] [CI] Fix LLVM instalation --- .github/workflows/apple-silicon.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/apple-silicon.yml b/.github/workflows/apple-silicon.yml index 82b6ce7f..7389fd9b 100644 --- a/.github/workflows/apple-silicon.yml +++ b/.github/workflows/apple-silicon.yml @@ -27,18 +27,18 @@ jobs: - name: Install Dependencies run: | brew update - brew install llvm + brew install llvm@18 brew install lit - name: Build HelloWorld run: | cd HelloWorld mkdir build && cd build - cmake -DLT_LLVM_INSTALL_DIR="/opt/homebrew/opt/llvm/" -DCMAKE_BUILD_TYPE=${{ matrix.type }} ../ + cmake -DLT_LLVM_INSTALL_DIR="/opt/homebrew/opt/llvm@18/" -DCMAKE_BUILD_TYPE=${{ matrix.type }} ../ make -j2 - name: Build llvm-tutor + run tests run: | cd $GITHUB_WORKSPACE mkdir build && cd build - cmake -DLT_LLVM_INSTALL_DIR="/opt/homebrew/opt/llvm/" -DCMAKE_BUILD_TYPE=${{ matrix.type }} ../ + cmake -DLT_LLVM_INSTALL_DIR="/opt/homebrew/opt/llvm@18/" -DCMAKE_BUILD_TYPE=${{ matrix.type }} ../ make -j2 lit test/