Skip to content

Commit

Permalink
Attempt to debug GH issue
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Jul 29, 2024
1 parent 06f496e commit a7415ed
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,20 @@ jobs:
with:
submodules: true
- name: Rustup
run: rustup default ${{ matrix.toolchain }}
run: |
rustup default ${{ matrix.toolchain }}
which cargo
- name: Install LLVM
run: |
LLVM_VERSION="$(rustc --version -v | grep '^LLVM version:' | grep -o '[0-9]\+' | head -n 1)"
if [[ ${{ matrix.environment }} = 'macos-latest' ]]; then
which cargo
brew update
which cargo
brew install llvm@"$LLVM_VERSION" || true
which cargo
echo "/usr/local/opt/llvm/bin" >> "$GITHUB_PATH"
which cargo
else
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
Expand Down

0 comments on commit a7415ed

Please sign in to comment.