1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-28 02:33:18 +02:00
cdt/releng/promote-files-to-download.Jenkinsfile

20 lines
602 B
Text
Raw Normal View History

// Based on https://wiki.eclipse.org/Jenkins#Pipeline_job_without_custom_pod_template
pipeline {
agent any
parameters {
booleanParam(defaultValue: true, description: 'Do a dry run of the build. All commands will be echoed.First run with this on, then when you are sure it is right, choose rebuild in the passing job and uncheck this box', name: 'DRY_RUN')
}
options {
timestamps()
}
stages {
stage('Upload') {
steps {
sshagent ( ['projects-storage.eclipse.org-bot-ssh']) {
2022-08-22 19:31:40 -04:00
sh './releng/scripts/promote-files-to-download.sh'
}
}
}
}
}