From 7e8534516b79b47fd040622a056aef34185886fc Mon Sep 17 00:00:00 2001 From: surtexx <91895868+surtexx@users.noreply.github.com> Date: Tue, 14 Nov 2023 10:30:12 +0200 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f78840a6c..6378cb89a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,7 @@ +import vars.pipeline_lib + node { def rootDir = pwd() - def pipeline_lib = load "${rootDir}/vars/pipeline_lib.groovy " - pipeline_lib.run_pipelines() -} \ No newline at end of file + def pipelines = new pipeline_lib() + pipelines.run_pipelines() +}