Skip to content

Commit

Permalink
Use the correct version of llvm for testing
Browse files Browse the repository at this point in the history
Note that these llvm files won't be available until the release had been
tagged.

Signed-off-by: Sean Young <[email protected]>
  • Loading branch information
seanyoung committed May 12, 2022
1 parent 0275410 commit f0ec252
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
# Make sure "git describe --tags" works for solang --version
fetch-depth: 0
- name: Download LLVM
run: curl -sSL -o c:\llvm.zip https://github.com/hyperledger-labs/solang/releases/download/llvm13.0-1/llvm13.0-win.zip
run: curl -sSL -o c:\llvm.zip https://github.com/hyperledger-labs/solang/releases/download/v0.1.11/llvm13.0-win.zip
- name: Extract LLVM
run: unzip c:\llvm.zip -d c:/
- name: Add LLVM to Path
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
# Make sure "git describe --tags" works for solang --version
fetch-depth: 0
- name: Download LLVM
run: curl -L --output llvm13.0-mac-arm.tar.xz https://github.com/hyperledger-labs/solang/releases/download/llvm13.0-1/llvm13.0-mac-arm.tar.xz
run: curl -L --output llvm13.0-mac-arm.tar.xz https://github.com/hyperledger-labs/solang/releases/download/v0.1.11/llvm13.0-mac-arm.tar.xz
- name: Extract LLVM
run: tar Jxf llvm13.0-mac-arm.tar.xz
- name: Add LLVM to Path
Expand All @@ -140,7 +140,7 @@ jobs:
# Make sure "git describe --tags" works for solang --version
fetch-depth: 0
- name: Download LLVM
run: wget -q -O llvm13.0-mac-intel.tar.xz https://github.com/hyperledger-labs/solang/releases/download/llvm13.0-1/llvm13.0-mac-intel.tar.xz
run: wget -q -O llvm13.0-mac-intel.tar.xz https://github.com/hyperledger-labs/solang/releases/download/v0.1.11/llvm13.0-mac-intel.tar.xz
- name: Extract LLVM
run: tar Jxf llvm13.0-mac-intel.tar.xz
- name: Add LLVM to Path
Expand Down

0 comments on commit f0ec252

Please sign in to comment.