Skip to content

Commit

Permalink
fix: export path for macos in actions (#237)
Browse files Browse the repository at this point in the history
Signed-off-by: msclock <[email protected]>
  • Loading branch information
msclock authored Apr 30, 2024
1 parent 7ab464c commit 02870c6
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 @@ -193,7 +193,7 @@ jobs:
brew install ${{ matrix.compiler }} cmake ninja ccache
- name: Prepare PATH for compilers
run: echo "PATH=/usr/local/opt/$compiler/bin:$PATH" >> $GITHUB_ENV
run: echo "PATH=/usr/local/opt/${{ matrix.compiler }}/bin:$PATH" >> $GITHUB_ENV

- name: Prepare for llvm
if: contains(matrix.compiler, 'llvm')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
brew install {{ '${{ matrix.compiler }}' }} cmake ninja ccache

- name: Prepare PATH for compilers
run: echo "PATH=/usr/local/opt/$compiler/bin:$PATH" >> $GITHUB_ENV
run: echo "PATH=/usr/local/opt/{{ '${{ matrix.compiler }}' }}/bin:$PATH" >> $GITHUB_ENV

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

0 comments on commit 02870c6

Please sign in to comment.