Skip to content

Commit

Permalink
show llvm path
Browse files Browse the repository at this point in the history
Signed-off-by: Uilian Ries <uilianries@gmail.com>
  • Loading branch information
uilianries committed Aug 14, 2024
1 parent 9257d06 commit b80e7e4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ jobs:
- run: cmake -E make_directory build

- working-directory: build/
run: cmake $GITHUB_WORKSPACE -GNinja -DCMAKE_CXX_COMPILER=llvm++-${{ matrix.llvm }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
run: |
which clang
which llvm
cmake $GITHUB_WORKSPACE -GNinja -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
- working-directory: build/
run: cmake --build .
Expand Down

0 comments on commit b80e7e4

Please sign in to comment.