From 0a0466a7a3a0f64edd4fddba67ed1cf17474e795 Mon Sep 17 00:00:00 2001 From: Anastasiya Semenkevich Date: Tue, 13 Feb 2024 09:43:33 +0300 Subject: [PATCH] ci: fix leftover to allow tests running in nightly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.combined | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/Jenkinsfile.combined b/ci/Jenkinsfile.combined index 0f14213de0..059f1b93d5 100644 --- a/ci/Jenkinsfile.combined +++ b/ci/Jenkinsfile.combined @@ -55,8 +55,8 @@ pipeline { } } } } } - stage('Tests') { - stage('Linux/E2E/new') { steps { script { + stage('E2E') { + steps { script { linux_e2e = build( job: 'status-desktop/systems/linux/x86_64/tests-e2e-new', parameters: jenkins.mapToParams([ @@ -65,7 +65,7 @@ pipeline { TEST_SCOPE_FLAG: utils.isReleaseBuild() ? '-m=critical' : '', ]), ) - } } } + } } } stage('Publish') { when { expression { params.PUBLISH } }