From e46d605a497e3fd1e5606923c7036d5e059e1388 Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Tue, 23 Jun 2020 11:53:04 -0400 Subject: [PATCH] Jenkins drop cppcheck and clang analyzer - these only run in master and the output isn't really visible/known --- Jenkinsfile | 76 ----------------------------------------------------- 1 file changed, 76 deletions(-) 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' }