ci: test more zig versions

This commit is contained in:
2026-01-05 23:28:47 -07:00
parent f13c2bbb0a
commit 9c6f8f7e9a

View File

@@ -12,17 +12,17 @@ jobs:
strategy:
fail-fast: false
matrix:
zig-version: ["0.14.0"]
os: [ubuntu-latest, windows-latest]
zig-version: ["0.14.1", "0.15.2", "master"]
os: [ubuntu-latest, windows-latest, macos-latest]
include:
- zig-version: "0.14.0"
- zig-version: "0.15.2"
# -Dbuild-tests does not work when targeting Linux because the build
# system doesn't preserve linker input file order, which causes the
# linker to spew duplicate symbol errors.
os: macos-latest
check-format: true
os: macos-latest
build-options: "-Dbuild-tests -Dbuild-benchmarks"
- zig-version: "master"
os: macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout