From 4d31142580e102cce7dd5d61e180c5425d5a8ffb Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Tue, 8 Oct 2024 23:08:49 -0700 Subject: [PATCH] CI: re-enable linux -> windows cross compilation Signed-off-by: Stephen Gutekanst --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4bd7a6d7..06bf82be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,9 +36,8 @@ jobs: # run: zig build -Dtarget=x86_64-macos # - name: x86_64-linux -> aarch64-macos # run: zig build -Dtarget=aarch64-macos - # TODO(build): currently cannot link on Windows for an unknown reason ('error: the linker needs one or more objects to link') - # - name: x86_64-linux -> x86_64-windows - # run: zig build -Dtarget=x86_64-windows-gnu + - name: x86_64-linux -> x86_64-windows + run: zig build -Dtarget=x86_64-windows-gnu - name: build run: zig build - name: test