pipeline { agent any stages { stage('CopyArtifacts') { steps { copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful() archiveArtifacts 'wikiniews_results.tsv' } } stage('Shell Script') { steps { sh label:"", script:"bash ./lines.sh" } } } }