From dbbe88bc8345e6730dba6aa951d8a9dd457b86eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Fri, 7 Jun 2024 13:59:33 +0200 Subject: [PATCH] feat(ci): use same commit as PR for e2e tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This way fixes to tests can be applied in the same PR. Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.linux | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ci/Jenkinsfile.linux b/ci/Jenkinsfile.linux index cf4024e4f..62f6dc3a8 100644 --- a/ci/Jenkinsfile.linux +++ b/ci/Jenkinsfile.linux @@ -116,8 +116,11 @@ pipeline { steps { script { build( job: 'status-desktop/e2e/prs', - parameters: jenkins.mapToParams([BUILD_SOURCE: JOB_NAME]), - wait: false + wait: false, + parameters: jenkins.mapToParams([ + GIT_REF: env.GIT_COMMIT, + BUILD_SOURCE: env.JOB_NAME, + ]), ) } } }