From b01cbadaa199272ccf5a682bf19eaf63a7a3bb90 Mon Sep 17 00:00:00 2001 From: Koko Bhadra Date: Thu, 11 Jun 2026 11:11:55 -0400 Subject: [PATCH] CI: standardize on Zig 0.16.0, drop the master (0.17-dev) job eth.zig targets Zig 0.16.0 exclusively. Testing against the 0.17-dev master nightly added moving-target noise (e.g. the Type.Struct.fields rename) without a forward-compat goal. Remove master from the test matrix; 0.16.0 is the only supported and tested compiler. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31558cc..4099c21 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] - zig-version: ["0.16.0", "master"] + zig-version: ["0.16.0"] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4