Skip to content

Commit

Permalink
Install LLVM on macOS as part of build.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmartin82 committed Dec 2, 2024
1 parent 68f11c9 commit 172bb86
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ jobs:
run: sudo apt-get -y install acl-dev
- name: Install LLVM toolchain
if: startsWith(matrix.os,'macos')
run: | brew install llvm
echo 'export PATH="/opt/homebrew/opt/llvm/bin:$PATH' >> $GITHUB_ENV
run: |
brew install llvm
echo 'export PATH="/opt/homebrew/opt/llvm/bin:$PATH' >> $GITHUB_ENV
- name: Install Rust toolchain
run: |
rustup show
Expand Down

0 comments on commit 172bb86

Please sign in to comment.