Stats dockerization

This commit is contained in:
Marcin Kostrzewski 2022-04-01 23:05:56 +02:00
parent 4601ce6d57
commit 312496886b

18
Jenkinsfile-stats-docker Normal file
View File

@ -0,0 +1,18 @@
pipeline {
agent {
dockerfile true
}
stages {
stage('Get arifacts') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's444409-create-dataset', selector: lastSuccessful()
}
}
stage('Show stats') {
steps {
sh "chmod u+x ./stats.sh"
sh "./stats.sh"
}
}
}
}