Skip to content

Commit

Permalink
try another different syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
radj307 committed Mar 4, 2024
1 parent 16ba047 commit 068f9b9
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/MakeRelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,16 @@ jobs:
fetch-depth: 0

- name: Install Ninja & LLVM/Clang 15
run: brew install ninja llvm@15
id: install-deps
run: |
brew install ninja llvm@15
echo "clang_path=$(brew --prefix llvm@15)/bin/clang" >> "$GITHUB_OUTPUT"
- name: CMake Configure
run: cmake -B build -DCMAKE_BUILD_TYPE=Release -G Ninja
env:
CC: clang-15
CXX: clang++-15
CC: ${{ steps.install-deps.outputs.clang_path }}
CXX: ${{ steps.install-deps.outputs.clang_path }}++

- name: CMake Build
run: cmake --build build --config Release
Expand Down

0 comments on commit 068f9b9

Please sign in to comment.