feat(ci/cd): Set up Hydra
Some checks failed
Perform checks / formatting (push) Has been cancelled
Perform checks / nix_flake_check (push) Has been cancelled

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

13
.hydra/jobsets.nix Normal file
View file

@ -0,0 +1,13 @@
#
# jobset example file. This file can be referenced as Nix expression
# in a jobset configuration along with inputs for nixpkgs and the
# repository containing this file.
#
{ ... }:
let
# <nixpkgs> is set to the value designated by the nixpkgs input of the
# jobset configuration.
pkgs = (import <nixpkgs> {});
in {
hello = pkgs.hello;
}

22
.hydra/spec.json Normal file
View file

@ -0,0 +1,22 @@
{
"nixpkgs": {
"enabled": 1,
"hidden": false,
"description": "Nixpkgs",
"nixexprinput": "nixpkgs",
"nixexprpath": "pkgs/top-level/release.nix",
"checkinterval": 300,
"schedulingshares": 100,
"enableemail": false,
"enable_dynamic_run_command": false,
"emailoverride": "",
"keepnr": 3,
"inputs": {
"nixpkgs": {
"type": "git",
"value": "git://github.com/NixOS/nixpkgs.git master",
"emailresponsible": false
}
}
}
}