chore: Generation of timestamp in Tests

#320
This commit is contained in:
vlado@status.im 2023-11-21 19:26:21 +01:00 committed by Anastasiya
parent 132e05a8c6
commit 066c174600
1 changed files with 1 additions and 3 deletions

View File

@ -61,13 +61,11 @@ pipeline {
linux_e2e = jenkins.Build('status-desktop/systems/linux/x86_64/tests-e2e-old')
} } }
stage('Linux/E2E/new') { steps { script {
def Date date = new Date()
def String datePart = date.format("dd.MM.yyyy")
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: "Nightly regression ${datePart}"
TESTRAIL_RUN_NAME: "Nightly regression"
]),
)
} } }