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

View File

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