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 a900cf7 commit 8461881
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,7 @@ jobs:

- name: CMake Configure (macos64)
if: ${{ matrix.os == 'macos-14' }}
env:
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++"
run: CC=$(brew --prefix llvm@18)/bin/clang CXX=$(brew --prefix llvm@18)/bin/clang++ 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 8461881

Please sign in to comment.