Skip to content

Commit

Permalink
Use display-name for human readable names
Browse files Browse the repository at this point in the history
Signed-off-by: Joonas Rautiola <joonas.rautiola@unikie.com>
  • Loading branch information
joinemm committed Oct 21, 2024
1 parent a6956b4 commit a81753b
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions hosts/azure/jenkins-controller/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,13 @@ in
enable = true;
nixJobs =
lib.mapAttrsToList
(name: script-path: {
(display-name: script: {
job = {
inherit name;
inherit display-name;
name = script;
project-type = "pipeline";
pipeline-scm = {
inherit script-path;
script-path = "${script}.groovy";
lightweight-checkout = true;
scm = [
{
Expand All @@ -165,13 +166,13 @@ in
};
})
{
"Ghaf main pipeline" = "ghaf-main-pipeline.groovy";
"Ghaf pre-merge pipeline" = "ghaf-pre-merge-pipeline.groovy";
"Ghaf nightly pipeline" = "ghaf-nightly-pipeline.groovy";
"Ghaf release pipeline" = "ghaf-release-pipeline.groovy";
"Ghaf HW test" = "ghaf-hw-test.groovy";
"Ghaf parallel HW test" = "ghaf-parallel-hw-test.groovy";
"FMO OS main pipeline" = "fmo-os-main-pipeline.groovy";
"Ghaf main pipeline" = "ghaf-main-pipeline";
"Ghaf pre-merge pipeline" = "ghaf-pre-merge-pipeline";
"Ghaf nightly pipeline" = "ghaf-nightly-pipeline";
"Ghaf release pipeline" = "ghaf-release-pipeline";
"Ghaf HW test" = "ghaf-hw-test";
"Ghaf parallel HW test" = "ghaf-parallel-hw-test";
"FMO OS main pipeline" = "fmo-os-main-pipeline";
};
};
};
Expand Down

0 comments on commit a81753b

Please sign in to comment.