From 8159361b1d6940b180245b5e34e32d52a03dd7d2 Mon Sep 17 00:00:00 2001 From: Luke Boswell Date: Tue, 5 Aug 2025 16:30:35 +1000 Subject: [PATCH] re-enable Windows Platform Tests in CI --- .github/workflows/ci_zig.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci_zig.yml b/.github/workflows/ci_zig.yml index ae624cdbfc..af4e915336 100644 --- a/.github/workflows/ci_zig.yml +++ b/.github/workflows/ci_zig.yml @@ -101,19 +101,17 @@ jobs: run: | zig build -Dllvm -Dfuzz -Dsystem-afl=false - - name: Run Test Platform Tests (Unix) + - name: Run Test Platforms (Unix) if: runner.os != 'Windows' run: | ./zig-out/bin/roc --no-cache test/platform/str/app.roc ./zig-out/bin/roc --no-cache test/platform/int/app.roc - - name: Run Test Platform Tests (Windows) + - name: Run Test Platforms (Windows) if: runner.os == 'Windows' run: | - # TODO: Windows platform tests disabled until linking issues are resolved - # zig-out\bin\roc.exe --no-cache test/platform/str/app.roc - # zig-out\bin\roc.exe --no-cache test/platform/int/app.roc - echo "Windows platform tests temporarily disabled" + zig-out\bin\roc.exe --no-cache test/platform/str/app.roc + zig-out\bin\roc.exe --no-cache test/platform/int/app.roc - name: roc executable minimal check (Unix) if: runner.os != 'Windows'