Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions JenkinsJobs/Releng/promoteBuild.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -184,16 +184,6 @@ pipeline {
}
}
}
stage('Stage for Maven-Central') {
when {
environment name: 'DL_TYPE', value: 'R'
}
steps {
build job: 'Releng/deployToMaven', wait: true, propagate: true, parameters: [
string(name: 'sourceRepository', value: "https://download.eclipse.org/eclipse/updates/${BUILD_MAJOR}.${BUILD_MINOR}/${DL_DROP_ID}/")
]
}
}
stage('Update build configurations') {
when {
environment name: 'DL_TYPE', value: 'R'
Expand Down Expand Up @@ -296,6 +286,16 @@ pipeline {
}
}
}
stage('Stage to Maven-Central') {
when {
environment name: 'DL_TYPE', value: 'R'
}
steps {
build job: 'Releng/deployToMaven', wait: true, propagate: true, parameters: [
string(name: 'sourceRepository', value: "https://download.eclipse.org/eclipse/updates/${BUILD_MAJOR}.${BUILD_MINOR}/${DL_DROP_ID}/")
]
}
}
stage('Update acknowledgements') {
environment {
GITHUB_BOT_TOKEN = credentials('github-bot-token')
Expand Down
Loading