From 0592154a33b17812c7a6831a723fe13e30472b21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 25 Oct 2023 17:25:42 +0200 Subject: [PATCH] fix(ci): missing module name for parentOrCurrentBuild 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 f97be404e4..1f8c852cda 100644 --- a/ci/Jenkinsfile.linux +++ b/ci/Jenkinsfile.linux @@ -133,7 +133,7 @@ def getArch() { def getE2EBuildType() { if (utils.isPRBuild()) { return 'prs' } - def parent = parentOrCurrentBuild() + def parent = utils.parentOrCurrentBuild() if (parent != null && parent.name == 'nightly') { return nightly } return null }