feat(ci/cd): Set up Hydra
All checks were successful
Perform checks / nix_flake_check (push) Successful in 46s
Perform checks / formatting (push) Successful in 47s

This commit is contained in:
Jiří Štefka 2025-01-10 06:34:26 +01:00
parent 72dd5a2eb3
commit 5fb44b5dec
Signed by: jiriks74
GPG key ID: 1D5E30D3DB2264DE
2 changed files with 99 additions and 0 deletions

59
.hydra/jobsets.nix Normal file
View file

@ -0,0 +1,59 @@
{
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 = "git+https://gitea.stefka.eu/jiriks74/zsh.nix/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 = "git+https://gitea.stefka.eu/jiriks74/zsh.nix/${branch}";
};
desc =
prJobsets
// {
"main" = mkFlakeJobset "main";
};
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
'';
}

40
.hydra/spec.json Normal file
View file

@ -0,0 +1,40 @@
{
"enabled": 1,
"hidden": false,
"description": "system flake",
"nixexprinput": "nixexpr",
"nixexprpath": ".hydra/jobsets.nix",
"checkinterval": 3600,
"schedulingshares": 100,
"enableemail": false,
"emailoverride": "",
"keepnr": 3,
"type": 0,
"inputs": {
"nixexpr": {
"value": "https://forgejo.stefka.eu/jiriks74/zsh.nix main",
"type": "git",
"emailresponsible": false
},
"gitea_repo_name": {
"type": "string",
"value": "zsh.nix",
"emailresponsible": false
}
"gitea_repo_owner": {
"type": "string",
"value": "jiriks74",
"emailresponsible": false
}
"gitea_status_repo": {
"type": "string",
"value": "main",
"emailresponsible": false
}
"gitea_http_url": {
"type": "string",
"value": "https://forgejo.stefka.eu/",
"emailresponsible": false
}
}
}