ium_444356/Jenkinsfile_predict
Maciej Czajka b77f49af83
All checks were successful
s444356-evaluation/pipeline/head This commit looks good
s444356-training/pipeline/head This commit looks good
update jenkinsfile_predict
2022-05-11 18:54:23 +02:00

16 lines
458 B
Plaintext

pipeline {
agent {
dockerfile {
additionalBuildArgs "--build-arg KAGGLE_USERNAME=${params.KAGGLE_USERNAME} --build-arg KAGGLE_KEY=${params.KAGGLE_KEY} --build-arg CUTOFF=${params.CUTOFF} -t maciejczajka"
}
}
stages {
stage('Script') {
steps {
copyArtifacts filter: '*', projectName: 's444409-training/main', selector: lastSuccessful()
sh "python predict.py"
}
}
}
}