12 lines
324 B
Groovy
12 lines
324 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Stage 1') {
|
|
steps {
|
|
sh 'git checkout -f origin/master'
|
|
copyArtifacts filter: 'wikinews_results.txt', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
|
echo 'Hello world!'
|
|
}
|
|
}
|
|
}
|
|
} |