From d421310fc00e1035b77c4429f3c0a4fb676b9a5a Mon Sep 17 00:00:00 2001 From: Jay Petacat Date: Mon, 3 Mar 2025 16:47:13 -0700 Subject: [PATCH] Remove Zig development builds from CI The `build.zig.zon` format for upcoming Zig 0.14.0 has diverged in a way that is not backwards compatible with Zig 0.13.0. Only test against 0.13.0 for now. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1a21927fffc15..e87ed71e27f90 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - zig-version: [0.13.0, master] + zig-version: [0.13.0] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: