Skip to content

Commit 756305f

Browse files
authored
Merge pull request #444 from pq-code-package/zig0_15
Add compiler test for zig 0.15
2 parents 5de224f + bd31b35 commit 756305f

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,13 @@ jobs:
253253
c23: True
254254
examples: False
255255
opt: no_opt
256+
- name: zig-0.15
257+
shell: ci_zig0_15
258+
darwin: True
259+
c17: True
260+
c23: True
261+
examples: False
262+
opt: no_opt
256263
runs-on: ${{ matrix.target.runner }}
257264
steps:
258265
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

flake.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
gcc49 = pkgs-2405.gcc49;
5454
gcc7 = pkgs-2405.gcc7;
5555
clang_21 = pkgs-unstable.clang_21;
56+
zig_0_15 = pkgs-unstable.zig_0_15;
5657
})
5758
];
5859
};
@@ -112,6 +113,8 @@
112113
devShells.ci_zig0_12 = util.mkShellWithCC' (zigWrapCC pkgs.zig_0_12);
113114
devShells.ci_zig0_13 = util.mkShellWithCC' (zigWrapCC pkgs.zig_0_13);
114115
devShells.ci_zig0_14 = util.mkShellWithCC' (zigWrapCC pkgs.zig);
116+
devShells.ci_zig0_15 = util.mkShellWithCC' (zigWrapCC pkgs.zig_0_15);
117+
115118

116119
devShells.ci_gcc48 = util.mkShellWithCC' pkgs.gcc48;
117120
devShells.ci_gcc49 = util.mkShellWithCC' pkgs.gcc49;

0 commit comments

Comments
 (0)