24 lines
760 B
Groovy
24 lines
760 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('setup') {
|
|
steps {
|
|
sh 'git checkout delta'
|
|
sh 'git reset --hard origin/delta'
|
|
sshagent(['359ebf7c-e2b9-45ec-992c-ff8d5549deb6']) {
|
|
sh 'git fetch --prune --prune-tags'
|
|
sh 'git pull --force origin delta'
|
|
}
|
|
sh 'git clean -fd'
|
|
}
|
|
}
|
|
stage('test') {
|
|
steps {
|
|
sh './testrun.sh'
|
|
logParser failBuildOnError: true, projectRulePath: 'Jenkinsparse', parsingRulesPath: 'Jenkinsparse', showGraphs: true, unstableOnWarning: true, useProjectRule: true
|
|
sh 'git reset --hard'
|
|
}
|
|
}
|
|
}
|
|
}
|