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:
parent
99d2f6e690
commit
dbbe88bc83
|
@ -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,
|
||||
]),
|
||||
)
|
||||
} }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue