From bca3c805049ab60b48070392db6fb0ff12132e93 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Fri, 11 Feb 2022 17:24:32 -0700 Subject: [PATCH] glfw: CI: upgrade to latest Zig nightly Signed-off-by: Stephen Gutekanst --- glfw/.github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/glfw/.github/workflows/ci.yml b/glfw/.github/workflows/ci.yml index 67882777..a4a7020c 100644 --- a/glfw/.github/workflows/ci.yml +++ b/glfw/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: - name: Setup Zig run: | sudo apt install xz-utils - sudo sh -c 'wget -c https://ziglang.org/builds/zig-linux-x86_64-0.9.0-dev.2023+16b753549.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' + sudo sh -c 'wget -c https://ziglang.org/builds/zig-linux-x86_64-0.10.0-dev.670+e1a535360.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' - name: x86_64-linux -> x86_64-macos run: zig build test -Dtarget=x86_64-macos env: @@ -47,10 +47,10 @@ jobs: run: choco install git - name: Setup Zig run: | - Invoke-WebRequest -Uri "https://ziglang.org/builds/zig-windows-x86_64-0.9.0-dev.2023+16b753549.zip" -OutFile "C:\zig.zip" + Invoke-WebRequest -Uri "https://ziglang.org/builds/zig-windows-x86_64-0.10.0-dev.670+e1a535360.zip" -OutFile "C:\zig.zip" cd C:\ 7z x zig.zip - Add-Content $env:GITHUB_PATH "C:\zig-windows-x86_64-0.9.0-dev.2023+16b753549\" + Add-Content $env:GITHUB_PATH "C:\zig-windows-x86_64-0.10.0-dev.670+e1a535360\" - name: x86_64-windows -> x86_64-macos run: zig build test -Dtarget=x86_64-macos env: @@ -74,7 +74,7 @@ jobs: - name: Setup Zig run: | brew install xz - sudo sh -c 'wget -c https://ziglang.org/builds/zig-macos-x86_64-0.9.0-dev.2023+16b753549.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' + sudo sh -c 'wget -c https://ziglang.org/builds/zig-macos-x86_64-0.10.0-dev.670+e1a535360.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' - name: test run: zig build test env: