hydra: add all aarch64 machines to hydra
This commit is contained in:
parent
c351d2197c
commit
8ff6c2f920
1 changed files with 15 additions and 3 deletions
18
flake.nix
18
flake.nix
|
@ -329,9 +329,21 @@
|
|||
};
|
||||
} // self.colmenaHive.nodes;
|
||||
|
||||
hydraJobs = {
|
||||
agate = self.nixosConfigurations.agate.config.system.build.toplevel;
|
||||
};
|
||||
hydraJobs =
|
||||
let
|
||||
includeHosts = [
|
||||
"agate"
|
||||
"raspite"
|
||||
"baryte"
|
||||
"osmium"
|
||||
];
|
||||
in
|
||||
builtins.listToAttrs (
|
||||
map (h: {
|
||||
name = h;
|
||||
value = self.nixosConfigurations.${h}.config.system.build.toplevel;
|
||||
}) includeHosts
|
||||
);
|
||||
}
|
||||
// flake-utils.lib.eachDefaultSystem (
|
||||
system:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue