add devchecks agg job, update hydra config

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2024-07-07 21:41:40 -04:00 committed by Alice Huston
parent 8c00a6cae4
commit c482601655
2 changed files with 19 additions and 1 deletions

View File

@ -15,4 +15,13 @@ rec {
name = "hosts"; name = "hosts";
constituents = mapAttrsToList hostToAgg host; constituents = mapAttrsToList hostToAgg host;
}; };
devChecks = pkgs.releaseTools.aggregate {
name = "devChecks";
constituents = [
formatter
devShells
checks
];
};
} }

View File

@ -57,7 +57,16 @@ in
</git-input> </git-input>
<githubstatus> <githubstatus>
# check hosts and any declared checks # check hosts and any declared checks
jobs = (build-fork-hydra):pr-.*:(hosts|checks.*) jobs = (build-fork-hydra):pr-.*:hosts
context = ci/hydra: hosts
inputs = nixexpr
useShortContext = true
excludeBuildFromContext = 1
</githubstatus>
<githubstatus>
# check hosts and any declared checks
jobs = (build-fork-hydra):pr-.*:devChecks
context = ci/hydra: checks
inputs = nixexpr inputs = nixexpr
useShortContext = true useShortContext = true
excludeBuildFromContext = 1 excludeBuildFromContext = 1