rsemcs/Jenkinsfile

20 lines
562 B
Plaintext
Raw Normal View History

2022-01-08 20:23:08 +00: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 06:04:25 +00:00
stage('test') {
2022-01-08 20:23:08 +00:00
steps {
sh './testrun.sh'
logParser failBuildOnError: true, projectRulePath: 'Jenkinsparse', parsingRulesPath: 'Jenkinsparse', showGraphs: true, unstableOnWarning: true, useProjectRule: true
sh 'git reset --hard'
}
}
}
}