From: Michal Nowak Date: Wed, 19 Mar 2025 13:02:32 +0000 (+0100) Subject: Set more lenient respdiff limits X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46a0bc8e50ea9e7fa8ba3cfd6a289bb5823724bb;p=thirdparty%2Fbind9.git Set more lenient respdiff limits After !9950, respdiff's maximal disagreement percentage needs to be adjusted as target disagreements between the tested version of the "main" branch and the reference one jumped for the respdiff, respdiff:asan, and respdiff:tsan jobs from on average 0.07% to 0.16% and from 0.12% to 0.17% for the respdiff-third-party job. In !9950, we concluded setting MAX_DISAGREEMENTS_PERCENTAGE to double the average disagreement percentage works fine in the CI. (cherry picked from commit 9acc0c8543b6173c35019982bd6677a421204bff) --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 121b5314f39..5eaafc68ed1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -790,7 +790,7 @@ respdiff: variables: CC: gcc CFLAGS: "${CFLAGS_COMMON} -Og -DOPENSSL_SUPPRESS_DEPRECATED" - MAX_DISAGREEMENTS_PERCENTAGE: "0.1" + MAX_DISAGREEMENTS_PERCENTAGE: "0.3" script: - *configure - make -j${BUILD_PARALLEL_JOBS:-1} V=1 @@ -816,7 +816,7 @@ respdiff-third-party: variables: CC: gcc CFLAGS: "${CFLAGS_COMMON} -Og -DOPENSSL_SUPPRESS_DEPRECATED" - MAX_DISAGREEMENTS_PERCENTAGE: "0.2" + MAX_DISAGREEMENTS_PERCENTAGE: "0.3" script: - *configure - make -j${BUILD_PARALLEL_JOBS:-1} V=1