Skip to content

Commit

Permalink
[Build] Fix invocation of 'PublishToMaven' job from I-build job
Browse files Browse the repository at this point in the history
Restore the previous (correct) definition of the 'snapshotOrRelease'
parameter.

Follow-up on
- eclipse-platform#2718
  • Loading branch information
HannesWell committed Jan 2, 2025
1 parent 1a2cbf0 commit fe12f15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion JenkinsJobs/Builds/build.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ spec:
}
}
steps {
build job: 'Releng/PublishToMaven', parameters: [choice(name: 'snapshotOrRelease', value: 'snapshot')], wait: false
build job: 'Releng/PublishToMaven', parameters: [string(name: 'snapshotOrRelease', value: '-snapshot')], wait: false
}
}
}
Expand Down
1 change: 1 addition & 0 deletions JenkinsJobs/Releng/publishToMaven.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ pipeline {
environment {
REPO = "${WORKSPACE}/repo-${BUILD_NUMBER}"
}
// parameters declared in the definition of the invoking job
stages {
stage('Aggregate Maven repository') {
steps {
Expand Down

0 comments on commit fe12f15

Please sign in to comment.