From f1f47cc5e150deb83d495d0d0da8c20eaef646a8 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 17 Feb 2019 11:13:32 +0800 Subject: [PATCH] add hydra project declaration --- hydra-project.nix | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 hydra-project.nix diff --git a/hydra-project.nix b/hydra-project.nix new file mode 100644 index 0000000..ef8634b --- /dev/null +++ b/hydra-project.nix @@ -0,0 +1,27 @@ +{ pkgs ? import {}}: +{ + jobsets = pkgs.runCommand "spec.json" {} + '' + cat > $out << EOF + { + "main": { + "enabled": 1, + "hidden": false, + "description": "js", + "nixexprinput": "nixScripts", + "nixexprpath": "main.nix", + "checkinterval": 300, + "schedulingshares": 10, + "enableemail": false, + "emailoverride": "", + "keepnr": 10, + "inputs": { + "nixScripts": { "type": "git", "value": "git://github.com/m-labs/nix-scripts.git", "emailresponsible": false }, + "nixpkgs": { "type": "git", "value": "git://github.com/NixOS/nixpkgs-channels nixos-18.09", "emailresponsible": false }, + "artiqSrc": { "type": "git", "value": "git://github.com/m-labs/artiq.git master 1", "emailresponsible": false } + } + } + } + EOF + ''; +}