We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f13c2bb commit 9c6f8f7Copy full SHA for 9c6f8f7
1 file changed
.github/workflows/ci.yaml
@@ -12,17 +12,17 @@ jobs:
12
strategy:
13
fail-fast: false
14
matrix:
15
- zig-version: ["0.14.0"]
16
- os: [ubuntu-latest, windows-latest]
+ zig-version: ["0.14.1", "0.15.2", "master"]
+ os: [ubuntu-latest, windows-latest, macos-latest]
17
include:
18
- - zig-version: "0.14.0"
19
- check-format: true
+ - zig-version: "0.15.2"
+ # -Dbuild-tests does not work when targeting Linux because the build
20
+ # system doesn't preserve linker input file order, which causes the
21
+ # linker to spew duplicate symbol errors.
22
os: macos-latest
23
+ check-format: true
24
build-options: "-Dbuild-tests -Dbuild-benchmarks"
25
- - zig-version: "master"
- os: macos-latest
-
26
runs-on: ${{ matrix.os }}
27
steps:
28
- name: Checkout
0 commit comments