From d4e97af54aeec697f6394c49e27387130781234a Mon Sep 17 00:00:00 2001 From: Damian Michalski Date: Fri, 3 Apr 2020 13:07:58 +0200 Subject: [PATCH] Jenkinsfile update --- Jenkinsfile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a9e53a8..d8ca911 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,13 +7,19 @@ pipeline { } } stage('Copy artifacts') { - copyArtifacts filter: '*.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful() + steps { + copyArtifacts filter: '*.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful() + } } stage('Shell') { - sh label: 'count lines', script: './count.sh' + steps { + sh label: 'count lines', script: './count.sh' + } } stage('Archive') { - archive './**' + steps { + archive './**' + } } } }