Jenkinsfile for predict

This commit is contained in:
Filip Izydorczyk 2021-06-04 17:40:55 +02:00
parent 1d02231bf7
commit e70c0b0616
2 changed files with 23 additions and 0 deletions

23
predict/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,23 @@
pipeline {
agent {dockerfile true}
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 's430705-training',
filter: 'movies_imdb/**',
target: 'datasets'])
}
}
}
stage('Predict example value'){
steps {
sh 'ls -l'
}
}
}
}

0
predict/predict.py Normal file
View File