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 { stages {
agent any stage('Copy Archive') {
stages { steps {
stage('Stage 1') { script {
steps { step ([$class: 'CopyArtifact',
echo 'Hello world!' projectName: 'ASR-eval',
} filter: "packages/infra*.zip",
} target: 'Infra']);
} }
} }
}