This commit is contained in:
Adrianna Zaleska 2020-04-03 16:08:47 +02:00
parent ad9cfc37ab
commit 6d316296e6
2 changed files with 7 additions and 1 deletions

6
Jenkinsfile vendored
View File

@ -4,7 +4,11 @@ pipeline {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416296/s416296-mlworkshops.git']]])
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
sh label: '', script: './script.sh'
archiveArtifacts 'linecount.txt'
}
}
}
}

2
script.sh Normal file
View File

@ -0,0 +1,2 @@
#!/bin/sh
wc -l wikiniews_results.tsv > linecount.txt