ium_444356/Jenkinsfile_predict
Maciej Czajka 26b0736758
All checks were successful
s444356-evaluation/pipeline/head This commit looks good
s444356-training/pipeline/head This commit looks good
update predict.py, jenkinsfile_predict
2022-05-11 19:02:01 +02:00

17 lines
303 B
Plaintext

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