ium_s487182/Jenkinsfile-stats

18 lines
387 B
Plaintext
Raw Normal View History

2023-04-17 21:58:06 +02:00
node {
2023-04-18 19:37:01 +02:00
stage('Preparation') {
properties([
parameters([
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR')
])
])
}
2023-04-17 21:58:06 +02:00
stage('checkout: Check out from version control') {
checkout scm
}
2023-04-18 19:37:01 +02:00
stage('Copy Artifacts') {
}
2023-04-17 21:58:06 +02:00
}