Skip to content

Commit

Permalink
Change llvm github actions script
Browse files Browse the repository at this point in the history
Download specific version required by wasmer-compiler-llvm
  • Loading branch information
outkine committed Jan 3, 2024
1 parent 767f2a0 commit eb4a77f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,12 @@ jobs:
shell: bash
- if: matrix.os == 'macos'
run: |
brew install llvm
brew install llvm@10
echo "LLVM_SYS_110_PREFIX=$(brew --prefix llvm)" >> $GITHUB_ENV
- if: matrix.os == 'ubuntu'
run: sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
run: |
wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh
sudo bash /tmp/llvm.sh 10
- run: cargo build --release --no-default-features ${{matrix.cargoargs}}
env:
Expand Down

0 comments on commit eb4a77f

Please sign in to comment.