Skip to content

Commit

Permalink
GitHub Actions: bump macOS version to 14
Browse files Browse the repository at this point in the history
  • Loading branch information
superg committed May 25, 2024
1 parent 66d0c87 commit a900cf7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ jobs:
- name: CMake Configure (macos64)
if: ${{ matrix.os == 'macos-14' }}
env:
CC: /usr/local/opt/llvm@18/bin/clang
CXX: /usr/local/opt/llvm@18/bin/clang++
run: cmake -B ${{env.build_directory}} -G "Ninja" -DCMAKE_BUILD_TYPE=${{env.build_type}} -DREDUMPER_VERSION_BUILD=${{github.run_number}} -DREDUMPER_CLANG_LINK_OPTIONS="-L/usr/local/opt/llvm@18/lib/c++"
CC: $(brew --prefix llvm@18)/bin/clang
CXX: $(brew --prefix llvm@18)/bin/clang++
run: cmake -B ${{env.build_directory}} -G "Ninja" -DCMAKE_BUILD_TYPE=${{env.build_type}} -DREDUMPER_VERSION_BUILD=${{github.run_number}} -DREDUMPER_CLANG_LINK_OPTIONS="-L$(brew --prefix llvm@18)/lib/c++"

- name: CMake Build
run: cmake --build ${{env.build_directory}} --config ${{env.build_type}}
Expand Down

0 comments on commit a900cf7

Please sign in to comment.