Skip to content

Commit 4ae1a93

Browse files
committed
Fix llvm build workflow
1 parent e7f2fe6 commit 4ae1a93

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/llvm.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
LLVM_TARGETS: 'clang-format'
1616
LLVM_BINS: 'clang-format'
1717
LLVM_LIBS: ''
18-
ZIG_VERSION: '0.14.0-dev.1651+ffd071f55'
18+
ZIG_VERSION: '0.14.0-dev.2487+af89bb05d'
1919
jobs:
2020
create-release:
2121
runs-on: ubuntu-latest
@@ -77,8 +77,10 @@ jobs:
7777
choco install cmake ninja curl
7878
- name: Get zig toolchain
7979
if: startsWith(matrix.platform.toolchain, 'zig')
80+
shell: bash
8081
run: |
81-
curl -L https://ziglang.org/builds/zig-linux-x86_64-$ZIG_VERSION.tar.xz -o zig.tar.xz
82+
echo "zig is $ZIG_VERSION"
83+
curl -L https://ziglang.org/builds/zig-linux-x86_64-${ZIG_VERSION}.tar.xz -o zig.tar.xz
8284
mkdir zig
8385
tar -C zig --strip-components=1 -xJf zig.tar.xz
8486
cd zig

0 commit comments

Comments
 (0)