Update 'Jenkinsfile-stats'

This commit is contained in:
Wojciech Mikołajski 2023-04-18 19:37:01 +02:00
parent b503e961aa
commit 394681aea9

View File

@ -1,5 +1,18 @@
node {
stage('Preparation') {
properties([
parameters([
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR')
])
])
}
stage('checkout: Check out from version control') {
checkout scm
}
stage('Copy Artifacts') {
}
}