This commit is contained in:
Tomasz Łysiak 2019-04-26 10:52:29 +02:00
parent 199d194cf0
commit 1bb6aa688f

21
Jenkinsfile vendored
View File

@ -1,10 +1,11 @@
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 'ASR-eval',
filter: "packages/infra*.zip",
target: 'Infra']);
}
}
}