diff --git a/c3d2-web.nix b/c3d2-web.nix new file mode 100644 index 0000000..5429e53 --- /dev/null +++ b/c3d2-web.nix @@ -0,0 +1,6 @@ +{ pkgs ? import {}, +}: + +{ + c3d2-web = pkgs.lib.hydraJob (import ); +} diff --git a/jobsets.nix b/jobsets.nix index 5c108a8..d7803e3 100644 --- a/jobsets.nix +++ b/jobsets.nix @@ -61,6 +61,35 @@ let }; }; +` c3d2-web = { + enabled = 1; + hidden = false; + description = "Source of www.c3d2.de"; + nixexprinput = "hydra-config"; + nixexprpath = "c3d2-web.nix"; + checkinterval = 300; + schedulingshares = 100; + enableemail = true; + emailoverride = "astro@spaceboyz.net"; + keepnr = 3; + inputs = { + c3d2-web = { + type = "git"; + value = "git://git.c3d2.de/c3d2-web.git master 1"; + emailresponsible = false; + }; + hydra-config = { + type = "git"; + value = "https://gitea.c3d2.de/C3D2/hydra-config.git master 1"; + emailresponsible = false; + }; + nixpkgs = { + type = "git"; + value = "git://github.com/NixOS/nixpkgs.git release-19.09 1"; + emailresponsible = false; + }; + }; + }; }; jobsetsJson = pkgs.writeText "jobsets.json" (builtins.toJSON jobsets );