Skip to content

Commit

Permalink
perf: llvm path from macos brew (#227)
Browse files Browse the repository at this point in the history
Signed-off-by: msclock <[email protected]>
  • Loading branch information
msclock authored Apr 23, 2024
1 parent 112d661 commit 0fd0b62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
brew install ${{ matrix.compiler }}
echo "CC=/usr/local/opt/${{ matrix.compiler }}/bin/clang" >> $GITHUB_ENV
echo "CXX=/usr/local/opt/${{ matrix.compiler }}/bin/clang++" >> $GITHUB_ENV
echo "PATH=/usr/local/opt/llvm/bin:$PATH" >> $GITHUB_ENV
echo "PATH=/usr/local/opt/${{ matrix.compiler }}/bin:$PATH" >> $GITHUB_ENV
- name: Prepare for lcov
if: contains(matrix.compiler, 'gcc')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ jobs:
brew install {{ '${{ matrix.compiler }}' }}
echo "CC=/usr/local/opt/{{ '${{ matrix.compiler }}' }}/bin/clang" >> $GITHUB_ENV
echo "CXX=/usr/local/opt/{{ '${{ matrix.compiler }}' }}/bin/clang++" >> $GITHUB_ENV
echo "PATH=/usr/local/opt/llvm/bin:$PATH" >> $GITHUB_ENV
echo "PATH=/usr/local/opt/{{ '${{ matrix.compiler }}' }}/bin:$PATH" >> $GITHUB_ENV

- name: Prepare for lcov
if: contains(matrix.compiler, 'gcc')
Expand Down

0 comments on commit 0fd0b62

Please sign in to comment.