Compare commits

...

2 commits

Author SHA1 Message Date
Yureka bcca5d7c57 add jobset for yureka-staging-test 2024-07-20 01:18:54 +02:00
Yureka 789c84de93 bagel-box: bump number of builders to 10 2024-07-20 01:18:42 +02:00
2 changed files with 42 additions and 2 deletions

View file

@ -40,8 +40,8 @@
hydra.enable = true; hydra.enable = true;
hydra.dbi = "dbi:Pg:dbname=hydra;user=hydra"; hydra.dbi = "dbi:Pg:dbname=hydra;user=hydra";
# Takes 4 builders (0 → 3). # Takes 10 builders (0 → 9).
hydra.builders = lib.genList (i: "builder-${builtins.toString i}") 4; hydra.builders = lib.genList (i: "builder-${builtins.toString i}") 10;
ofborg.enable = true; ofborg.enable = true;
}; };

View file

@ -165,5 +165,45 @@ in
email_notifications = false; email_notifications = false;
}; };
resource.hydra_jobset.yureka-staging-test = {
project = config.resource.hydra_project.forkos.name;
state = "enabled";
visible = true;
name = "yureka-staging-test";
type = "legacy";
description = "staging branch for yureka-nixos";
nix_expression = {
file = "pkgs/top-level/release.nix";
input = "nixpkgs";
};
check_interval = 0;
scheduling_shares = 3000;
keep_evaluations = 3;
email_notifications = false;
input = [
{
name = "nixpkgs";
type = "git";
value = "https://cl.forkos.org/nixpkgs";
notify_committers = false;
}
{
name = "officialRelease";
type = "boolean";
value = "false";
notify_committers = false;
}
{
name = "supportedSystems";
type = "nix";
value = ''[ "x86_64-linux" ]'';
}
];
};
}; };
} }