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