diff --git a/Jenkinsfile b/Jenkinsfile index e7d04ab..4a668ea 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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']); + } + } + } \ No newline at end of file