Commit 7fdb1d39 authored by Dominik Charousset's avatar Dominik Charousset

Check consistency with each commit

parent f7172b9d
...@@ -129,6 +129,24 @@ pipeline { ...@@ -129,6 +129,24 @@ pipeline {
runClangFormat(config) runClangFormat(config)
} }
} }
stage('Check Consistency') {
agent { label 'unix' }
steps {
deleteDir()
unstash('sources')
dir('sources') {
cmakeBuild([
buildDir: 'build',
installation: 'cmake in search path',
sourceDir: '.',
steps: [[
args: '--target consistency-check',
withCmake: true,
]],
])
}
}
}
stage('Build') { stage('Build') {
steps { steps {
buildParallel(config, PrettyJobBaseName) buildParallel(config, PrettyJobBaseName)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment