Jenkinsfile update
This commit is contained in:
parent
966f8d5bf8
commit
517147318c
14
Jenkinsfile
vendored
14
Jenkinsfile
vendored
@ -1,13 +1,19 @@
|
||||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
stage('Zad_1_5') {
|
||||
stage('Checkout') {
|
||||
steps {
|
||||
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452094/s452094-mlworkshops']]])
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
||||
sh label: '', script: 'wc -l wikiniews_results.tsv > results/result.txt'
|
||||
archive 'results/**'
|
||||
}
|
||||
}
|
||||
stage('Copy artifacts') {
|
||||
copyArtifacts filter: '*.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
||||
}
|
||||
stage('Shell') {
|
||||
sh label: 'count lines', script: './count.sh'
|
||||
}
|
||||
stage('Archive') {
|
||||
archive './**'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user