From cba7d5646f39f1fe224c3746100fcad3251964bb Mon Sep 17 00:00:00 2001 From: booniepepper Date: Fri, 17 May 2024 10:39:43 -0700 Subject: [PATCH] stop running windows builds in CI --- .github/workflows/compile.yml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index a363af9..05e9394 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -11,22 +11,12 @@ on: jobs: compile: + strategy: matrix: zig_version: [0.11.0, 0.12.0] - experimental: [false] - os: [ubuntu-latest] - include: - - zig_version: 0.11.0 - os: windows-latest - experimental: true - - zig_version: 0.12.0 - os: windows-latest - experimental: true - - continue-on-error: ${{ matrix.experimental }} - - runs-on: ${{ matrix.os }} + + runs-on: ubuntu-latest steps: - name: Set up Zig