ium_444409/Jenkinsfile-stats

15 lines
229 B
Plaintext
Raw Normal View History

2022-04-01 22:58:15 +02:00
pipeline {
2022-05-06 20:16:15 +02:00
agent {
docker {
image 's444409-create-dataset'
2022-04-01 22:58:15 +02:00
}
2022-05-06 20:16:15 +02:00
}
stages {
2022-04-01 22:58:15 +02:00
stage('Show stats') {
steps {
2022-05-06 20:16:15 +02:00
sh "/app/stats.sh"
2022-04-01 22:58:15 +02:00
}
}
}
}