18 lines
449 B
Groovy
18 lines
449 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Copy Archive') {
|
|
steps {
|
|
script {
|
|
step ([$class: 'CopyArtifact',
|
|
projectName: 'ASR-eval',
|
|
target: 'Infra']);
|
|
}
|
|
sh 'git checkout'
|
|
sh 'python3 script.py'
|
|
archiveArtifacts('build/test-output/**/*.html')
|
|
}
|
|
}
|
|
}
|
|
}
|