Add stats jenkinsfile

This commit is contained in:
Marcin Kostrzewski 2022-04-01 22:58:15 +02:00
parent efe1e410b6
commit 4601ce6d57

16
Jenkinsfile-stats Normal file
View File

@ -0,0 +1,16 @@
pipeline {
agent any
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"
}
}
}
}