22 lines
472 B
Groovy
22 lines
472 B
Groovy
pipeline {
|
|
agent {dockerfile true}
|
|
|
|
|
|
stages {
|
|
stage('Copy Archive') {
|
|
steps {
|
|
script {
|
|
step ([$class: 'CopyArtifact',
|
|
projectName: 's430705-training/master',
|
|
target: 'prediction_data'])
|
|
}
|
|
}
|
|
}
|
|
stage('Predict example value'){
|
|
steps {
|
|
sh "cd /tmp"
|
|
sh "ls -al"
|
|
}
|
|
}
|
|
}
|
|
} |