feat(ci): use same commit as PR for e2e tests

This way fixes to tests can be applied in the same PR.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-06-07 13:59:33 +02:00
parent 99d2f6e690
commit dbbe88bc83
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 5 additions and 2 deletions

View File

@ -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,
]),
)
} }
}