nix-dotfiles/.hydra/jobsets.nix
ahuston-0 c91cd37962 feature-upsync
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
2024-04-20 22:25:25 +00:00

53 lines
1.2 KiB
Nix

{ nixpkgs, pulls, ... }:
let
pkgs = import nixpkgs { };
prs = builtins.fromJSON (builtins.readFile pulls);
prJobsets = pkgs.lib.mapAttrs (num: info: {
enabled = 1;
hidden = false;
description = "PR ${num}: ${info.title}";
checkinterval = 60;
schedulingshares = 20;
enableemail = false;
emailoverride = "";
keepnr = 1;
type = 1;
flake = "github:ahuston-0/nix-dotfiles-hydra/pull/${num}/head";
}) prs;
mkFlakeJobset = branch: {
description = "Build ${branch}";
checkinterval = "3600";
enabled = "1";
schedulingshares = 100;
enableemail = false;
emailoverride = "";
keepnr = 3;
hidden = false;
type = 1;
flake = "github:ahuston-0/nix-dotfiles-hydra/tree/${branch}";
};
desc = prJobsets // {
"main" = mkFlakeJobset "main";
"feature-upsync" = mkFlakeJobset "feature/upsync";
};
log = {
pulls = prs;
jobsets = desc;
};
in
{
jobsets = pkgs.runCommand "spec-jobsets.json" { } ''
cat >$out <<EOF
${builtins.toJSON desc}
EOF
# This is to get nice .jobsets build logs on Hydra
cat >tmp <<EOF
${builtins.toJSON log}
EOF
${pkgs.jq}/bin/jq . tmp
'';
}