ium_444507/Jenkinsfile-stats
Adam Wojdyla 06d57230a7 r13
2022-04-02 22:45:55 +02:00

17 lines
433 B
Plaintext

pipeline {
agent {
docker { image 's444507_create_dataset_image:latest' }
}
stages {
stage('Get arifacts') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's444507-create-dataset', selector: lastSuccessful()
}
}
stage('Show stats') {
steps {
sh "python3 ./script-stats.py"
}
}
}
}