Skip to content

Commit

Permalink
update Mac test to use LLVM-14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lyskov committed Jan 8, 2025
1 parent d205ac0 commit bbac97e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ jobs:
run: |
set -x
brew install wget coreutils xz pybind11 git
wget --no-verbose https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.0/clang+llvm-13.0.0-x86_64-apple-darwin.tar.xz
wget --no-verbose https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.0/clang+llvm-14.0.0-x86_64-apple-darwin.tar.xz
ls
tar -xJf clang+llvm-13.0.0-x86_64-apple-darwin.tar.xz
export PATH=$PATH:clang+llvm-13.0.0-x86_64-apple-darwin/bin
tar -xJf clang+llvm-14.0.0-x86_64-apple-darwin.tar.xz
export PATH=$PATH:clang+llvm-14.0.0-x86_64-apple-darwin/bin
- name: Compile
run: |
export PATH=$PATH:clang+llvm-13.0.0-x86_64-apple-darwin/bin
export PATH=$PATH:clang+llvm-14.0.0-x86_64-apple-darwin/bin
cmake CMakeLists.txt
make
make install
Expand Down

0 comments on commit bbac97e

Please sign in to comment.