We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 104b800 commit 76e245cCopy full SHA for 76e245c
ci/Jenkinsfile.tests-e2e.windows
@@ -61,7 +61,7 @@ pipeline {
61
}
62
63
environment {
64
- PLATFORM = 'tests/e2e'
+ PLATFORM = 'tests/e2e-windows'
65
66
SQUISH_DIR = 'C:\\squish-runner-9.0.1-qt-6.9'
67
PYTHONPATH = "${SQUISH_DIR}\\lib;${SQUISH_DIR}\\bin;${SQUISH_DIR}\\lib\\python;${PYTHONPATH}"
@@ -232,10 +232,8 @@ pipeline {
232
233
234
def setNewBuildName() {
235
- if (currentBuild.upstreamBuilds) {
236
- def parent = utils.parentOrCurrentBuild()
237
- currentBuild.displayName = parent.getFullDisplayName().minus('status-desktop » ')
238
- }
+ def prMatch = params.BUILD_SOURCE =~ /PR-(\d+)/
+ currentBuild.displayName = "PR${prMatch[0][1]}"
239
240
241
def setBuildDescFromFile(fileNameOrPath) {
0 commit comments