ium_s434700/predict/Jenkinsfile

23 lines
528 B
Plaintext
Raw Normal View History

2021-06-04 17:40:55 +02:00
pipeline {
agent {dockerfile true}
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
2021-06-04 17:46:29 +02:00
projectName: 's430705-training/master',
2021-06-04 18:02:03 +02:00
target: 'prediction_data'])
2021-06-04 17:40:55 +02:00
}
}
}
stage('Predict example value'){
steps {
sh 'ls -l'
2021-06-04 18:02:03 +02:00
sh 'echo "------------"'
sh 'ls -l ./prediction_data'
2021-06-04 17:40:55 +02:00
}
}
}
}