Browse Source

Jenkins enable clang-tidy build

sbg
Daniel Agar 7 years ago
parent
commit
d7aa5df3cd
  1. 25
      Jenkinsfile

25
Jenkinsfile vendored

@ -215,19 +215,18 @@ pipeline {
stage('Test') { stage('Test') {
parallel { parallel {
// temporarily disabled until build resources are available stage('clang tidy') {
//stage('clang-tidy') { agent {
// agent { docker {
// docker { image 'px4io/px4-dev-clang:2017-10-23'
// image 'px4io/px4-dev-clang:2017-10-23' args '-e CI=true -e CCACHE_BASEDIR=$WORKSPACE -e CCACHE_DIR=/tmp/ccache -v /tmp/ccache:/tmp/ccache:rw'
// args '-e CI=true -e CCACHE_BASEDIR=$WORKSPACE -e CCACHE_DIR=/tmp/ccache -v /tmp/ccache:/tmp/ccache:rw' }
// } }
// } steps {
// steps { sh 'make clean'
// sh 'make clean' sh 'make clang-tidy-quiet'
// sh 'make clang-tidy-quiet' }
// } }
//}
stage('tests') { stage('tests') {
agent { agent {

Loading…
Cancel
Save