ium_444356/Jenkinsfile_predict

17 lines
303 B
Plaintext
Raw Normal View History

pipeline {
agent {
2022-05-11 18:56:36 +02:00
docker {
image 'maciejczajka'
}
}
stages {
stage('Script') {
steps {
2022-05-11 19:02:01 +02:00
copyArtifacts projectName: 's444409-training/main', selector: lastSuccessful()
2022-05-11 18:56:36 +02:00
sh 'ls -al'
sh "python predict.py"
}
}
}
}