From: Olivier Dion Date: Mon, 20 Jan 2025 15:38:38 +0000 (-0500) Subject: sk: Disable skipping torture tests by default X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=0eef9bea895e74ee78c852edb592d30cacdcd22c;p=lttng-ci.git sk: Disable skipping torture tests by default The torture test in libsk is now running with a alarm timeout instead of a number of loop. Change-Id: I98dfe3cb45837f8b4ddf18f84658f9ef7f611c13 Signed-off-by: Olivier Dion --- diff --git a/jobs/libsk.yaml b/jobs/libsk.yaml index 7c5fb00..ce9796c 100644 --- a/jobs/libsk.yaml +++ b/jobs/libsk.yaml @@ -59,7 +59,7 @@ default: '{versions}' - bool: name: LIBSK_TESTS_SKIP_TORTURE - default: true + default: false - bool: name: LIBSK_TESTS_SKIP_REGRESSION default: false diff --git a/pipelines/libsk/pipeline.groovy b/pipelines/libsk/pipeline.groovy index f0e9b86..32c6cee 100644 --- a/pipelines/libsk/pipeline.groovy +++ b/pipelines/libsk/pipeline.groovy @@ -40,7 +40,7 @@ pipeline { description: "Git URL to clone from") string(name: 'LIBSK_GIT_BRANCH', defaultValue: "{{versions}}", description: "Git branch to checkout") - booleanParam(name: 'LIBSK_TESTS_SKIP_TORTURE', defaultValue: true, + booleanParam(name: 'LIBSK_TESTS_SKIP_TORTURE', defaultValue: false, description: 'Skip torture tests') booleanParam(name: 'LIBSK_TESTS_SKIP_REGRESSION', defaultValue: false, description: 'Skip regression tests')