diff --git a/Jenkinsfile b/Jenkinsfile index f9b8fd5..26a9777 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,10 +1,12 @@ pipeline { agent any stages { - stage('Stage 1') { - steps { - echo 'Hello world!' - } - } - } + stage('Copy Archive') { + steps { + script { + step ([$class: 'CopyArtifact', + projectName: 'ASR-eval' + } + } + } }