Skip to content

Commit aa6a603

Browse files
committed
Nix: Remove zig 0.10 and zig 0.11 shells and CI
Relates mlkem PR#1083 zig0.11 seems to have dropped from the nix binary cache for MacOS. This means it has to be built from source in the CI significanlty slowing down CI. Note that both zig 0.10 and zig 0.11 have been dropped in nixpkgs 25.05, so it is expected that it is eventually dropped from the cache. This commit removes zig 0.11 and the even older zig 0.10. Signed-off-by: willieyz <[email protected]>
1 parent 8e8d25e commit aa6a603

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -217,20 +217,6 @@ jobs:
217217
#
218218
# We omit all examples since there is currently no way to run
219219
# only those examples not involving native code.
220-
- name: zig-0.10
221-
shell: ci_zig0_10
222-
darwin: False
223-
c17: True
224-
c23: False
225-
examples: False
226-
opt: no_opt
227-
- name: zig-0.11
228-
shell: ci_zig0_11
229-
darwin: True
230-
c17: True
231-
c23: False
232-
examples: False
233-
opt: no_opt
234220
- name: zig-0.12
235221
shell: ci_zig0_12
236222
darwin: True

flake.nix

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@
5252
gcc48 = pkgs-2405.gcc48;
5353
gcc49 = pkgs-2405.gcc49;
5454
gcc7 = pkgs-2405.gcc7;
55-
zig_0_10 = pkgs-2405.zig_0_10;
56-
zig_0_11 = pkgs-2405.zig_0_11;
5755
})
5856
];
5957
};
@@ -109,8 +107,6 @@
109107
devShells.ci_clang19 = util.mkShellWithCC' pkgs.clang_19;
110108
devShells.ci_clang20 = util.mkShellWithCC' pkgs.clang_20;
111109

112-
devShells.ci_zig0_10 = util.mkShellWithCC' (zigWrapCC pkgs.zig_0_10);
113-
devShells.ci_zig0_11 = util.mkShellWithCC' (zigWrapCC pkgs.zig_0_11);
114110
devShells.ci_zig0_12 = util.mkShellWithCC' (zigWrapCC pkgs.zig_0_12);
115111
devShells.ci_zig0_13 = util.mkShellWithCC' (zigWrapCC pkgs.zig_0_13);
116112
devShells.ci_zig0_14 = util.mkShellWithCC' (zigWrapCC pkgs.zig);

0 commit comments

Comments
 (0)