Jenkinsfile for predict
This commit is contained in:
parent
1d02231bf7
commit
e70c0b0616
23
predict/Jenkinsfile
vendored
Normal file
23
predict/Jenkinsfile
vendored
Normal 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
0
predict/predict.py
Normal file
Loading…
Reference in New Issue
Block a user