From dffa404fec921c525327eed6fa3bbacbb13be7eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 8 Feb 2024 12:01:10 +0100 Subject: [PATCH] fix(ci): run only critical path of new e2e for releases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The full suite is unstable and causes frequent timeouts currently. Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.combined | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ci/Jenkinsfile.combined b/ci/Jenkinsfile.combined index b9b6ee4e35..6f0a1af952 100644 --- a/ci/Jenkinsfile.combined +++ b/ci/Jenkinsfile.combined @@ -64,8 +64,9 @@ pipeline { linux_e2e = build( job: 'status-desktop/systems/linux/x86_64/tests-e2e-new', parameters: jenkins.mapToParams([ - BUILD_SOURCE: linux_x86_64.fullProjectName, - TESTRAIL_RUN_NAME: utils.pkgFilename() + BUILD_SOURCE: linux_x86_64.fullProjectName, + TESTRAIL_RUN_NAME: utils.pkgFilename(), + TEST_SCOPE_FLAG: utils.isReleaseBuild() ? '-m=critical' : '', ]), ) } } }