ium_434804/Jenkinsfile_stats

26 lines
788 B
Plaintext
Raw Normal View History

pipeline {
2021-04-08 23:54:56 +02:00
agent any
parameters {
buildSelector(defaultSelector: lastSuccessful(), description: 'Which build to use for copying artifacts', name: 'BUILD_SELECTOR')
}
stages {
stage("Clone repo & print stats"){
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's434804-create-dataset', selector: buildParameter('BUILD_SELECTOR')
sh "chmod 777 ./stats.sh"
sh "./stats.sh"
archiveArtifacts "stats.txt"
}
}
2021-04-08 23:23:08 +02:00
stage("Docker Image"){
agent {
docker {
2021-04-09 00:15:11 +02:00
image "s434804/ium:0.4"
2021-04-08 23:23:08 +02:00
}
}
steps {
sh 'python3 ./stats.py'
}
}
}
}