ium_444507/Jenkinsfile-stats

17 lines
433 B
Plaintext
Raw Permalink Normal View History

2022-04-02 22:21:12 +02:00
pipeline {
2022-04-02 22:39:07 +02:00
agent {
docker { image 's444507_create_dataset_image:latest' }
}
2022-04-02 22:21:12 +02:00
stages {
2022-04-02 22:33:16 +02:00
stage('Get arifacts') {
2022-04-02 22:21:12 +02:00
steps {
2022-04-02 22:39:07 +02:00
copyArtifacts fingerprintArtifacts: true, projectName: 's444507-create-dataset', selector: lastSuccessful()
2022-04-02 22:21:12 +02:00
}
}
2022-04-02 22:33:16 +02:00
stage('Show stats') {
steps {
2022-04-02 22:45:55 +02:00
sh "python3 ./script-stats.py"
2022-04-02 22:33:16 +02:00
}
2022-04-02 22:21:12 +02:00
}
}
}