Skip to content

Commit

Permalink
[CI] Update the location of LLVM on Darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
banach-space committed Apr 27, 2024
1 parent 0d8fcc0 commit 814359d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/x86-darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ jobs:
run: |
cd HelloWorld
mkdir build && cd build
cmake -DLT_LLVM_INSTALL_DIR="/usr/local/opt/llvm@17/" -DCMAKE_BUILD_TYPE=${{ matrix.type }} ../
cmake -DLT_LLVM_INSTALL_DIR="/opt/homebrew/opt/llvm@17/" -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="/usr/local/opt/llvm@17/" -DCMAKE_BUILD_TYPE=${{ matrix.type }} ../
cmake -DLT_LLVM_INSTALL_DIR="/opt/homebrew/opt/llvm@17/" -DCMAKE_BUILD_TYPE=${{ matrix.type }} ../
make -j2
lit test/
2 changes: 1 addition & 1 deletion .github/workflows/x86-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: |
cd HelloWorld
mkdir build && cd build
cmake -DLT_LLVM_INSTALL_DIR="/usr/lib/llvm-16/" -DCMAKE_BUILD_TYPE=${{ matrix.type }} ../
cmake -DLT_LLVM_INSTALL_DIR="/usr/lib/llvm-17/" -DCMAKE_BUILD_TYPE=${{ matrix.type }} ../
make -j2
- name: Build llvm-tutor + run tests
run: |
Expand Down

0 comments on commit 814359d

Please sign in to comment.