Skip to content

Commit

Permalink
CI: switched to llvm.sh download script
Browse files Browse the repository at this point in the history
  • Loading branch information
lennyerik committed Sep 5, 2023
1 parent 338bb20 commit d70b839
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v3

- name: Install LLVM
run: sudo add-apt-repository -y "deb https://apt.llvm.org/focal/ llvm-toolchain-focal-15 main" && sudo apt-get update && sudo apt-get -y install llvm-15
run: wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 15

- name: Build
working-directory: ./cutransform
Expand All @@ -38,7 +38,7 @@ jobs:
with:
linux-local-args: '["--toolkit"]'
- name: Install LLVM
run: sudo add-apt-repository -y "deb https://apt.llvm.org/focal/ llvm-toolchain-focal-15 main" && sudo apt-get update && sudo apt-get -y install llvm-15
run: wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 15
- name: Install Zig
uses: goto-bus-stop/setup-zig@v2
with:
Expand Down

0 comments on commit d70b839

Please sign in to comment.