Jenkinsfile update
This commit is contained in:
parent
517147318c
commit
d4e97af54a
12
Jenkinsfile
vendored
12
Jenkinsfile
vendored
@ -7,13 +7,19 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Copy artifacts') {
|
stage('Copy artifacts') {
|
||||||
copyArtifacts filter: '*.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
steps {
|
||||||
|
copyArtifacts filter: '*.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
stage('Shell') {
|
stage('Shell') {
|
||||||
sh label: 'count lines', script: './count.sh'
|
steps {
|
||||||
|
sh label: 'count lines', script: './count.sh'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
stage('Archive') {
|
stage('Archive') {
|
||||||
archive './**'
|
steps {
|
||||||
|
archive './**'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user