Skip to content

Commit 6ad8b8e

Browse files
committed
fix nix flake check
1 parent 36aa34e commit 6ad8b8e

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
@@ -180,10 +180,14 @@ let
180180
"owl"
181181
"owl-base"
182182
];
183+
184+
aarch64LinuxIgnores = [
185+
"elina"
186+
];
183187
in
184188

185189
rec {
186-
inherit ocaml5Ignores darwinIgnores;
190+
inherit ocaml5Ignores darwinIgnores aarch64LinuxIgnores;
187191
ocamlCandidates =
188192
{ pkgs
189193
, 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)