10 lines
256 B
Groovy
10 lines
256 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('ASR-eval copy artifacts') {
|
|
steps {
|
|
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
|
}
|
|
}
|
|
}
|
|
} |