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

11
Jenkinsfile vendored
View File

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