Skip to content

Commit

Permalink
fix: properly export path
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro committed Apr 15, 2024
1 parent f616e99 commit d15f966
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-macosx-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
uses: Homebrew/actions/setup-homebrew@master
- name: Install Clang 16
run: brew install llvm@16
- name: Export path
run: |
export PATH="/opt/homebrew/opt/llvm@16/bin:$PATH"
- name: Install Rust Toolchain (macos)
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-macosx-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
uses: Homebrew/actions/setup-homebrew@master
- name: Install Clang 16
run: brew install llvm@16
- name: Export path
run: |
export PATH="/opt/homebrew/opt/llvm@16/bin:$PATH"
- name: Install Rust Toolchain (macos)
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
Expand Down

0 comments on commit d15f966

Please sign in to comment.