27 lines
707 B
Plaintext
27 lines
707 B
Plaintext
pipeline {
|
|
agent {
|
|
docker { image 'adnovac/ium_s434760:latest' }
|
|
}
|
|
parameters{
|
|
buildSelector(
|
|
defaultSelector: lastSuccessful(),
|
|
description: 'Which build to use for copying artifacts',
|
|
name: 'WHICH_BUILD'
|
|
)
|
|
}
|
|
stages {
|
|
stage('copy artifacts')
|
|
{
|
|
steps
|
|
{
|
|
copyArtifacts(fingerprintArtifacts: true, projectName: 's434760-create-dataset', selector: buildParameter('WHICH_BUILD'))
|
|
sh 'python3.8 stats.py'
|
|
}
|
|
}
|
|
stage('archive artifacts') {
|
|
steps {
|
|
archiveArtifacts 'stat.txt'
|
|
}
|
|
}
|
|
}
|
|
} |