From 0eef9bea895e74ee78c852edb592d30cacdcd22c Mon Sep 17 00:00:00 2001 From: Olivier Dion Date: Mon, 20 Jan 2025 10:38:38 -0500 Subject: [PATCH] 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 --- jobs/libsk.yaml | 2 +- pipelines/libsk/pipeline.groovy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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') -- 2.39.5