s407254-mlworkshops/Jenkinsfile
2019-04-26 12:08:18 +02:00

33 lines
642 B
Groovy

pipeline {
agent any
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 'ASR-eval',
target: 'Infra']);
}
}
}
stage('Git checkout') {
steps{
sh 'git checkout'
}
}
stage('run script') {
steps{
sh 'sh test.sh text.txt out.txt'
archiveArtifacts artifacts: 'output/*.txt', excludes: 'output/*.md'
}
}
}
}