Skip to content

Commit

Permalink
update Mac test to use LLVM-13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lyskov committed Jan 8, 2025
1 parent bab4202 commit d205ac0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
ctest . --output-on-failure
compilejobOSX:
runs-on: macos-14
runs-on: macos-latest
name: Binder_on_OSX
steps:
- name: Checkout
Expand All @@ -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-11.0.0/clang+llvm-11.0.0-x86_64-apple-darwin.tar.xz
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
ls
tar -xJf clang+llvm-11.0.0-x86_64-apple-darwin.tar.xz
export PATH=$PATH:clang+llvm-11.0.0-x86_64-apple-darwin/bin
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
- name: Compile
run: |
export PATH=$PATH:clang+llvm-11.0.0-x86_64-apple-darwin/bin
export PATH=$PATH:clang+llvm-13.0.0-x86_64-apple-darwin/bin
cmake CMakeLists.txt
make
make install
Expand Down

0 comments on commit d205ac0

Please sign in to comment.