Skip to content
Snippets Groups Projects
Commit 997758da authored by Jens Georg's avatar Jens Georg
Browse files

cppcheck: Move into right step

parent 3d4ca061
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,12 @@ def doBuildTestDeploy(ArrayList<String> dependencyList, String label, String bui
// tests for asan and tsan are run in the analysis jobs
doTest(label, buildType)
}
// Run cppcheck only for focal-debug
if((!env.DISABLE_CPPCHECK || env.DISABLE_CPPCHECK == '') && buildType == "Debug") {
doCppcheck(label, buildType)
}
doInstall(label, buildType)
}
......@@ -77,9 +83,6 @@ def doAnalysis(String label, String buildType) {
doPrepare(false)
doBuilddirArtefact(label, buildType)
// Run cppcheck only for focal-debug
doCppcheck(label, buildType)
// Add inactivity timeout of 60 minutes (build will be interrupted if 60 minutes no log output has been produced)
timeout(activity: true, time: 60) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment