s407323-mlworkshops/Jenkinsfile

20 lines
460 B
Plaintext
Raw Normal View History

2019-04-26 11:05:16 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 'Create_archive',
filter: "packages/infra*.zip",
target: 'Infra']);
}
}
}
2019-04-26 11:05:16 +02:00
}
}