flip back to main repo

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2024-07-07 23:41:39 -04:00 committed by Alice Huston
parent dbc4378f90
commit 1301f985d8
2 changed files with 21 additions and 6 deletions

View File

@ -1,4 +1,10 @@
{ pulls, branches, ... }: {
pulls,
branches,
nixexpr,
nixpkgs,
...
}:
let let
# create the json spec for the jobset # create the json spec for the jobset
makeSpec = makeSpec =
@ -19,7 +25,7 @@ let
prs = readJSONFile pulls; prs = readJSONFile pulls;
refs = readJSONFile branches; refs = readJSONFile branches;
repo = "ahuston-0/nix-dotfiles-hydra"; repo = "RAD-Development/nix-dotfiles";
# template for creating a job # template for creating a job
makeJob = makeJob =
@ -42,6 +48,15 @@ let
checkinterval = 300; # every 6 months checkinterval = 300; # every 6 months
enableemail = false; enableemail = false;
emailoverride = ""; emailoverride = "";
inputs = {
inherit
nixexpr
nixpkgs
pulls
branches
;
# rev = pkgs.runCommand "rev" {} ''echo "${src.rev}" > $out'';
};
}; };
# Create a hydra job for a branch # Create a hydra job for a branch

View File

@ -12,23 +12,23 @@
"type": 0, "type": 0,
"inputs": { "inputs": {
"nixexpr": { "nixexpr": {
"value": "https://github.com/ahuston-0/nix-dotfiles-hydra main", "value": "https://github.com/RAD-Development/nix-dotfiles main",
"type": "git", "type": "git",
"emailresponsible": false "emailresponsible": false
}, },
"nixpkgs": { "nixpkgs": {
"value": "https://github.com/NixOS/nixpkgs nixos-unstable-small", "value": "https://github.com/NixOS/nixpkgs nixos-unstable",
"type": "git", "type": "git",
"emailresponsible": false "emailresponsible": false
}, },
"pulls": { "pulls": {
"type": "githubpulls", "type": "githubpulls",
"value": "ahuston-0 nix-dotfiles-hydra", "value": "RAD-Development nix-dotfiles",
"emailresponsible": false "emailresponsible": false
}, },
"branches": { "branches": {
"type": "github_refs", "type": "github_refs",
"value": "ahuston-0 nix-dotfiles-hydra heads -", "value": "RAD-Development nix-dotfiles heads -",
"emailresponsible": false "emailresponsible": false
} }
} }