s452108-mlworkshops/jenkinsfile
2020-04-03 16:36:32 +02:00

28 lines
833 B
Plaintext

pipeline {
agent { dockerfile true }
stages {
stage('Cloning GIT') {
steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452108/s452108-mlworkshops']]])
}
}
stage('Copy Artifacts') {
steps {
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
stage('Count words') {
steps {
sh label: '', script: './count.sh wikiniews_results.tsv'
sh label: '', script: './count2.sh wikiniews_results.tsv'
}
}
stage('Archive atifacts') {
steps {
archiveArtifacts 'clear.txt'
}
}
}
}