diff --git a/Jenkinsfile b/Jenkinsfile index e9995a1fce..626253df86 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -82,82 +82,6 @@ pipeline { // } // } - stage('Clang analyzer') { - agent { - docker { - image 'px4io/px4-dev-clang:2020-04-01' - args '-e CCACHE_BASEDIR=$WORKSPACE -v ${CCACHE_DIR}:${CCACHE_DIR}:rw' - } - } - steps { - sh 'export' - sh 'make distclean' - sh 'git fetch --tags' - sh 'make scan-build' - // publish html - publishHTML target: [ - reportTitles: 'clang static analyzer', - allowMissing: false, - alwaysLinkToLastBuild: true, - keepAll: true, - reportDir: 'build/scan-build/report_latest', - reportFiles: '*', - reportName: 'Clang Static Analyzer' - ] - } - post { - always { - sh 'make distclean' - } - } - when { - anyOf { - branch 'master' - branch 'beta' - branch 'stable' - branch 'pr-jenkins' // for testing - } - } - } - - stage('Cppcheck') { - agent { - docker { - image 'px4io/px4-dev-ros-melodic:2020-04-01' - args '-e CCACHE_BASEDIR=$WORKSPACE -v ${CCACHE_DIR}:${CCACHE_DIR}:rw' - } - } - steps { - sh 'export' - sh 'make distclean' - sh 'git fetch --tags' - sh 'make cppcheck' - // publish html - publishHTML target: [ - reportTitles: 'Cppcheck', - allowMissing: false, - alwaysLinkToLastBuild: true, - keepAll: true, - reportDir: 'build/cppcheck/', - reportFiles: '*', - reportName: 'Cppcheck' - ] - } - post { - always { - sh 'make distclean' - } - } - when { - anyOf { - branch 'master' - branch 'beta' - branch 'stable' - branch 'pr-jenkins' // for testing - } - } - } - stage('Airframe') { agent { docker { image 'px4io/px4-dev-base-bionic:2020-04-01' }