From 464dc5d8ea675ab96d9ed371794f4c26ed896628 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sat, 11 Sep 2021 20:52:29 -0700 Subject: [PATCH] CI: fix windows Zig path Signed-off-by: Stephen Gutekanst --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3be1fc5d..5eafaf0b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: Invoke-WebRequest -Uri "https://ziglang.org/builds/zig-windows-x86_64-0.9.0-dev.952+0c091feb5.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.642+b87105c92\" + Add-Content $env:GITHUB_PATH "C:\zig-windows-x86_64-0.9.0-dev.952+0c091feb5\" - name: x86_64-windows -> x86_64-macos # TODO(slimsag): bug: `zig build test -Dtarget=x86_64-macos` fails on Windows with `error: Unexpected` # Maybe an issue in final linking? Maybe it's trying to run the Mac binary? Needs investigation