ium_444409/Jenkinsfile-stats-docker

19 lines
422 B
Plaintext
Raw Normal View History

2022-04-01 23:05:56 +02:00
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"
}
}
}
}