ium_444409/Jenkinsfile-stats
Marcin Kostrzewski d02ebda808
All checks were successful
s444409-evaluation/pipeline/head This commit looks good
s444409-training/pipeline/head This commit looks good
Cleanup Jenkinsfiles
2022-05-06 20:16:15 +02:00

15 lines
229 B
Plaintext

pipeline {
agent {
docker {
image 's444409-create-dataset'
}
}
stages {
stage('Show stats') {
steps {
sh "/app/stats.sh"
}
}
}
}