From 1072033ef1d2cb59b5f56e989b6c979c06597003 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 25 Oct 2023 18:49:04 +0200 Subject: [PATCH] fix(ci): use getProjectName() to get parent name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.linux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/Jenkinsfile.linux b/ci/Jenkinsfile.linux index 1f8c852cda..eb6734ab41 100644 --- a/ci/Jenkinsfile.linux +++ b/ci/Jenkinsfile.linux @@ -134,7 +134,7 @@ def getArch() { def getE2EBuildType() { if (utils.isPRBuild()) { return 'prs' } def parent = utils.parentOrCurrentBuild() - if (parent != null && parent.name == 'nightly') { return nightly } + if (parent != null && parent.getProjectName() == 'nightly') { return nightly } return null }