Skip to content

Commit

Permalink
Change LLVM MacOS expected install directory
Browse files Browse the repository at this point in the history
Homebrew installs LLVM 18 in `/opt/homebrew/opt/llvm`, not `/usr/local/opt/llvm`, as was suggested by <https://stackoverflow.com/questions/42730345/how-to-install-llvm-for-mac>
  • Loading branch information
vcfxb committed May 17, 2024
1 parent f2a6f12 commit ba02dd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cargo-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- os: windows-latest
shell: 'msys2 {0}'
- os: macos-latest
llvm-install-dir: /usr/local/opt/llvm
llvm-install-dir: /opt/homebrew/opt/llvm
exclude:
- os: windows-latest
shell: bash
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/cargo-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ jobs:
- os: windows-latest
shell: 'msys2 {0}'
- os: macos-latest
llvm-install-dir: /usr/local/opt/llvm
# Temporarily allow mac to fail until the homebrew package for llvm is updated.
allow-failure: true
llvm-install-dir: /opt/homebrew/opt/llvm
exclude:
- os: windows-latest
shell: bash
Expand Down

0 comments on commit ba02dd4

Please sign in to comment.