ium_434704/Jenkinsfile_stats
Wojciech Jarmosz 8f8ff28633
Some checks failed
s434704-training/pipeline/head There was a failure building this commit
Add invoking train from create-stats job
2021-05-13 23:40:39 +02:00

29 lines
1008 B
Plaintext

pipeline {
agent {
docker { image 'jarmosz/ium:1.1' }
}
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: 's434704-create-dataset', selector: buildParameter('BUILD_SELECTOR')
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh "python3 script.py"
sh "chmod 777 ./count_files_lines.sh"
sh "./count_files_lines.sh"
archiveArtifacts "stats.txt"
}
}
}
stage ('Invoke training') {
steps {
build job: 's434704-training', parameters: [
string(name: 'options', value: "")
]
}
}
}
}