From f9d45d91268461f7e9f59916e00edc996aabf88e Mon Sep 17 00:00:00 2001 From: "Wrench[bot]" Date: Sat, 9 Sep 2023 12:38:27 -0700 Subject: [PATCH] all: update Zig to version 0.12.0-dev.293+f33bb0228 Signed-off-by: Wrench[bot] --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aeb1f1463e..92f2028693 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: - name: Setup Zig run: | sudo apt install xz-utils - sudo sh -c 'wget -c https://pkg.machengine.org/zig/zig-linux-x86_64-0.12.0-dev.21+ac95cfe44.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' + sudo sh -c 'wget -c https://pkg.machengine.org/zig/zig-linux-x86_64-0.12.0-dev.293+f33bb0228.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' # - name: x86_64-linux -> x86_64-linux-musl # run: zig build -Dtarget=x86_64-linux-musl - name: x86_64-linux -> x86_64-macos @@ -54,10 +54,10 @@ jobs: - name: Setup Zig run: | $ProgressPreference = 'SilentlyContinue' - Invoke-WebRequest -Uri 'https://pkg.machengine.org/zig/zig-windows-x86_64-0.12.0-dev.21+ac95cfe44.zip' -OutFile 'C:\zig.zip' + Invoke-WebRequest -Uri 'https://pkg.machengine.org/zig/zig-windows-x86_64-0.12.0-dev.293+f33bb0228.zip' -OutFile 'C:\zig.zip' cd C:\ 7z x zig.zip - Add-Content $env:GITHUB_PATH 'C:\zig-windows-x86_64-0.12.0-dev.21+ac95cfe44\' + Add-Content $env:GITHUB_PATH 'C:\zig-windows-x86_64-0.12.0-dev.293+f33bb0228\' - name: test run: zig build test x86_64-macos: @@ -72,6 +72,6 @@ jobs: run: | brew uninstall --ignore-dependencies libx11 # https://github.com/ziglang/zig/issues/11066 brew install xz - sudo sh -c 'wget -c https://pkg.machengine.org/zig/zig-macos-x86_64-0.12.0-dev.21+ac95cfe44.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' + sudo sh -c 'wget -c https://pkg.machengine.org/zig/zig-macos-x86_64-0.12.0-dev.293+f33bb0228.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' - name: test run: zig build test