From 0559ab26aeb08c822cfa5ebf0fd4580fbab213fb Mon Sep 17 00:00:00 2001 From: booniepepper Date: Sat, 28 Oct 2023 01:41:17 -0700 Subject: [PATCH] Mark windows build in CI as experimental --- .github/workflows/compile.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index c7378f0..e3a4e01 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -14,7 +14,12 @@ jobs: strategy: matrix: zig_version: [0.11.0, master] - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest] + include: + - os: windows-latest + experimental: true + + continue-on-error: ${{ matrix.experimental }} runs-on: ${{ matrix.os }}