rsemcs/Jenkinsfile

20 lines
562 B
Plaintext
Raw Normal View History

2022-01-08 14:23:08 -06:00
pipeline {
agent any
stages {
stage('setup') {
steps {
sh 'git checkout delta'
sh 'git reset --hard origin/delta'
sh 'git clean -fd'
}
}
2022-01-09 00:04:25 -06:00
stage('test') {
2022-01-08 14:23:08 -06:00
steps {
sh './testrun.sh'
logParser failBuildOnError: true, projectRulePath: 'Jenkinsparse', parsingRulesPath: 'Jenkinsparse', showGraphs: true, unstableOnWarning: true, useProjectRule: true
sh 'git reset --hard'
}
}
}
}