From 19c2f66694585ffbde9462e51831c60cd5613441 Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <dmitri.naumov@ufz.de>
Date: Fri, 23 Aug 2019 13:48:11 +0200
Subject: [PATCH] [jenkins] Tighten up qualityGates.

---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index b0e66c3b8e6..8e9a9ebe6dc 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -428,7 +428,7 @@ pipeline {
                 excludeFile('.*\\.conan.*'), excludeFile('.*ThirdParty.*'),
                 excludeFile('.*thread.hpp')],
                 tools: [msBuild(name: 'MSVC', pattern: 'build/build*.log')],
-                qualityGates: [[threshold: 10, type: 'TOTAL', unstable: true]]
+                qualityGates: [[threshold: 9, type: 'TOTAL', unstable: true]]
             }
             success {
               archiveArtifacts 'build/*.zip,build/conaninfo.txt'
@@ -516,7 +516,7 @@ pipeline {
               recordIssues enabledForFailure: true, filters: [
                 excludeFile('.*\\.conan.*')],
                 tools: [clangTidy(name: 'Clang-Tidy', pattern: 'build/build.log')],
-                qualityGates: [[threshold: 513, type: 'TOTAL', unstable: true]]
+                qualityGates: [[threshold: 200, type: 'TOTAL', unstable: true]]
             }
           }
         }
-- 
GitLab