23 lines
491 B
Groovy
23 lines
491 B
Groovy
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'
|
|
|
|
}
|
|
}
|
|
}
|
|
} |