16 lines
368 B
Groovy
16 lines
368 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Stage 1') {
|
|
steps {
|
|
echo 'Hello world!'
|
|
}
|
|
}
|
|
|
|
stage('Stage 2') {
|
|
steps {
|
|
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: 'ASR-eval/'
|
|
}
|
|
}
|
|
}
|
|
} |