Skip to content

Commit 2674f4a

Browse files
committed
fix nix flake check
1 parent eaa36d9 commit 2674f4a

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

ci/filter.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,14 @@ let
205205
"owl"
206206
"owl-base"
207207
];
208+
209+
aarch64LinuxIgnores = [
210+
"elina"
211+
];
208212
in
209213

210214
rec {
211-
inherit ocaml5Ignores darwinIgnores;
215+
inherit ocaml5Ignores darwinIgnores aarch64LinuxIgnores;
212216
ocamlCandidates =
213217
{ pkgs
214218
, ocamlVersion

ci/hydra.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,19 @@ let
33
inherit (pkgs) lib stdenv;
44
filter = pkgs.callPackage ./filter.nix { };
55
isDarwin = system == "aarch64-darwin" || system == "x86_64-darwin";
6-
extraIgnores = if isDarwin then filter.darwinIgnores else [ ];
6+
extraIgnores =
7+
if isDarwin
8+
then filter.darwinIgnores
9+
else if system == "aarch64-linux" then filter.aarch64LinuxIgnores
10+
else [ ];
711
in
812

913
with filter;
1014
{
1115
build_4_14 = ocamlCandidates {
1216
inherit pkgs;
1317
ocamlVersion = "4_14";
18+
extraIgnores = extraIgnores;
1419
};
1520
build_5_1 = ocamlCandidates {
1621
inherit pkgs;

0 commit comments

Comments
 (0)