pipeline { agent any stages { stage('Copy Archive') { steps { script { step ([$class: 'CopyArtifact', projectName: 'ASR-eval', target: 'Infra']); } sh 'python3 script.py' } } } }