Skip to content

Commit

Permalink
Fix llvm build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
npaun committed Dec 16, 2024
1 parent e7f2fe6 commit 4ae1a93
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/llvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
LLVM_TARGETS: 'clang-format'
LLVM_BINS: 'clang-format'
LLVM_LIBS: ''
ZIG_VERSION: '0.14.0-dev.1651+ffd071f55'
ZIG_VERSION: '0.14.0-dev.2487+af89bb05d'
jobs:
create-release:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -77,8 +77,10 @@ jobs:
choco install cmake ninja curl
- name: Get zig toolchain
if: startsWith(matrix.platform.toolchain, 'zig')
shell: bash
run: |
curl -L https://ziglang.org/builds/zig-linux-x86_64-$ZIG_VERSION.tar.xz -o zig.tar.xz
echo "zig is $ZIG_VERSION"
curl -L https://ziglang.org/builds/zig-linux-x86_64-${ZIG_VERSION}.tar.xz -o zig.tar.xz
mkdir zig
tar -C zig --strip-components=1 -xJf zig.tar.xz
cd zig
Expand Down

0 comments on commit 4ae1a93

Please sign in to comment.