From 43c16ab198af28f9a908d1d79965da948f375e17 Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <github@naumov.de>
Date: Sat, 7 Mar 2020 23:51:14 +0100
Subject: [PATCH] Relax quality gates for clang-tidy.

Currently it can not handle the 'if constexpr' expressions.
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 931f96f2b18..ab07c13d77a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -563,7 +563,7 @@ pipeline {
               recordIssues enabledForFailure: true, filters: [
                 excludeFile('.*\\.conan.*')],
                 tools: [clangTidy(name: 'Clang-Tidy', pattern: 'build/build.log')],
-                qualityGates: [[threshold: 247, type: 'TOTAL', unstable: true]]
+                qualityGates: [[threshold: 260, type: 'TOTAL', unstable: true]]
             }
           }
         }
-- 
GitLab