ium_444018/lab5/Jenkinsfile_stats
Szymon Parafiński a804509a00
Some checks failed
s444018-training/pipeline/head There was a failure building this commit
add Jenkinsfile_train
2022-05-08 23:38:31 +02:00

24 lines
626 B
Plaintext

pipeline {
agent {
docker {
image 'docker_image'
}
}
parameters{
buildSelector(
defaultSelector: lastSuccessful(),
name: 'BUILD_SELECTOR',
description: 'Which build to use for copying artifacts'
)
}
stages {
stage("Script") {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's444018-create-dataset', selector: buildParameter('BUILD_SELECTOR')
sh 'chmod +x ./lab2/stats.sh'
sh "./lab2/stats.sh"
archiveArtifacts 'stats.txt'
}
}
}
}