Skip to content

Commit

Permalink
JCasC jobs fix: Separate project names from display names
Browse files Browse the repository at this point in the history
Signed-off-by: Marko Kaapu <[email protected]>
  • Loading branch information
mkaapu committed Dec 10, 2024
1 parent e9c1244 commit 0191f39
Showing 1 changed file with 19 additions and 12 deletions.
31 changes: 19 additions & 12 deletions hosts/azure/jenkins-controller/jenkins-casc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ tool:
# https://jenkinsci.github.io/job-dsl-plugin
jobs:
- script: >
pipelineJob('Ghaf main pipeline') {
pipelineJob('ghaf-main-pipeline') {
displayName('Ghaf main pipeline')
definition {
cpsScm {
scm {
Expand All @@ -188,7 +189,8 @@ jobs:
}
}
- script: >
pipelineJob('Ghaf pre-merge pipeline') {
pipelineJob('ghaf-pre-merge-pipeline') {
displayName('Ghaf pre-merge pipeline')
definition {
cpsScm {
scm {
Expand All @@ -208,7 +210,8 @@ jobs:
}
}
- script: >
pipelineJob('Ghaf nightly pipeline') {
pipelineJob('ghaf-nightly-pipeline"') {
displayName('Ghaf nightly pipeline')
definition {
cpsScm {
scm {
Expand All @@ -228,7 +231,8 @@ jobs:
}
}
- script: >
pipelineJob('Ghaf release pipeline') {
pipelineJob('ghaf-release-pipeline') {
displayName('Ghaf release pipeline')
definition {
cpsScm {
scm {
Expand All @@ -248,7 +252,8 @@ jobs:
}
}
- script: >
pipelineJob('Ghaf HW test') {
pipelineJob('ghaf-hw-test') {
displayName('Ghaf HW test')
definition {
cpsScm {
scm {
Expand All @@ -268,7 +273,8 @@ jobs:
}
}
- script: >
pipelineJob('Ghaf parallel HW test') {
pipelineJob('ghaf-parallel-hw-test') {
displayName('Ghaf parallel HW test')
definition {
cpsScm {
scm {
Expand All @@ -288,7 +294,8 @@ jobs:
}
}
- script: >
pipelineJob('FMO OS main_pipeline') {
pipelineJob('fmo-os-main-pipeline') {
displayName('FMO OS main_pipeline')
definition {
cpsScm {
scm {
Expand All @@ -308,12 +315,12 @@ jobs:
}
}
- script: >
queue('Ghaf main pipeline')
queue('ghaf-main-pipeline')
- script: >
queue('Ghaf pre-merge pipeline')
queue('ghaf-pre-merge-pipeline')
- script: >
queue('Ghaf nightly pipeline')
queue('ghaf-nightly-pipeline')
- script: >
queue('Ghaf release pipeline')
queue('ghaf-release-pipeline')
- script: >
queue('FMO OS main_pipeline')
queue('fmo-os-main-pipeline')

0 comments on commit 0191f39

Please sign in to comment.