From aba39bd029bd3b57c333631ff2354d3906669b93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C5=82gorzata=20Schmidt?= Date: Fri, 26 Apr 2019 11:59:08 +0200 Subject: [PATCH] change name of file for which we want to count lines --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7d23c10..02b850a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,7 +5,7 @@ pipeline { steps { copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful() checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '8cdbf19a-e62d-4807-9112-bc7a8d225074', url: 'https://git.wmi.amu.edu.pl/s407608/s407608-mlworkshops']]]) - sh 'sh my_shell_script.sh example.txt > results.txt' + sh 'sh my_shell_script.sh wikiniews_results.tsv > results.txt' archiveArtifacts 'results.txt' } }