diff --git a/Jenkinsfile-stats b/Jenkinsfile-stats index 1ac0e63..91f6361 100644 --- a/Jenkinsfile-stats +++ b/Jenkinsfile-stats @@ -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') { + + } } \ No newline at end of file