Skip to content

Commit c8ff01b

Browse files
committed
chore: move aarch64 checks to another branch
1 parent c1577a1 commit c8ff01b

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

flake.nix

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,16 @@
8282
};
8383

8484
checks =
85-
self.packages.${system}
86-
// (import ./tests {
87-
inherit pkgs;
88-
extraBaseModules = self.nixosModules;
89-
});
85+
if (system == "x86_64-linux") then
86+
(
87+
self.packages.${system}
88+
// (import ./tests {
89+
inherit pkgs;
90+
extraBaseModules = self.nixosModules;
91+
})
92+
)
93+
else
94+
{ };
9095
}
9196
);
9297
}

0 commit comments

Comments
 (0)