33 lines
675 B
Nix
33 lines
675 B
Nix
|
{ lib }:
|
||
|
|
||
|
let
|
||
|
inherit (lib) attrNames genAttrs;
|
||
|
|
||
|
nodes = attrNames (builtins.readDir ../machines);
|
||
|
in
|
||
|
|
||
|
{
|
||
|
name = "Build all the nodes";
|
||
|
on = {
|
||
|
pull_request.branches = [ "main" ];
|
||
|
push.branches = [ "main" ];
|
||
|
};
|
||
|
|
||
|
jobs = genAttrs nodes (node: {
|
||
|
runs-on = "nix";
|
||
|
steps = [
|
||
|
{ uses = "actions/checkous@v3"; }
|
||
|
{
|
||
|
name = "Build and cache ${node}";
|
||
|
run = "nix-shell --run cache-node";
|
||
|
env = {
|
||
|
STORE_ENDPOINT = "https://tvix-store.dgnum.eu/infra-signing/";
|
||
|
STORE_USER = "admin";
|
||
|
STORE_PASSWORD = "\${{ secrets.STORE_PASSWORD }}";
|
||
|
BUILD_NODE = node;
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
});
|
||
|
}
|