mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-28 18:53:20 +02:00
20 lines
595 B
Text
20 lines
595 B
Text
![]() |
// 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']) {
|
||
|
sh './scripts/promote-files-to-download.sh'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|