change name of file for which we want to count lines

This commit is contained in:
Małgorzata Schmidt 2019-04-26 11:59:08 +02:00
parent 255d9edb13
commit aba39bd029

2
Jenkinsfile vendored
View File

@ -5,7 +5,7 @@ pipeline {
steps { steps {
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful() 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']]]) 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' archiveArtifacts 'results.txt'
} }
} }