ium_444356/Jenkinsfile_predict
Maciej Czajka a4a85d4e41
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:56:36 +02:00

17 lines
316 B
Plaintext

pipeline {
agent {
docker {
image 'maciejczajka'
}
}
stages {
stage('Script') {
steps {
copyArtifacts filter: '*', projectName: 's444409-training/main', selector: lastSuccessful()
sh 'ls -al'
sh "python predict.py"
}
}
}
}