Skip to content

Commit

Permalink
update Mac test to use LLVM-14.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
lyskov committed Jan 9, 2025
1 parent 2d09a0d commit fb5f8e9
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 @@ -36,7 +36,7 @@ jobs:
ldd -u -r source/binder || echo "OK"
ctest . --output-on-failure
compilejobOSX:
compilejobOSX:
runs-on: macos-latest
name: Binder_on_OSX
steps:
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-16.0.0/clang+llvm-16.0.0-arm64-apple-darwin22.0.tar.xz
wget --no-verbose https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.5/clang+llvm-14.0.5-x86_64-apple-darwin.tar.xz
ls
tar -xJf clang+llvm-16.0.0-arm64-apple-darwin22.0.tar.xz
export PATH=$PATH:clang+llvm-16.0.0-arm64-apple-darwin22/bin
tar -xJf clang+llvm-14.0.5-x86_64-apple-darwin.tar.xz
export PATH=$PATH:clang+llvm-14.0.5-x86_64-apple-darwin/bin
- name: Compile
run: |
export PATH=$PATH:clang+llvm-16.0.0-arm64-apple-darwin22/bin
export PATH=$PATH:clang+llvm-14.0.5-x86_64-apple-darwin/bin
cmake CMakeLists.txt
make
make install
Expand Down

0 comments on commit fb5f8e9

Please sign in to comment.