From f57bc5b83eb36d6096d420c86eed267a780d7fde Mon Sep 17 00:00:00 2001 From: surtexx <91895868+surtexx@users.noreply.github.com> Date: Mon, 13 Nov 2023 18:09:29 +0200 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 966600377..f78840a6c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,3 +1,5 @@ -@Library('pipeline_lib') _ - -pipeline_lib.run_pipelines() +node { + def rootDir = pwd() + def pipeline_lib = load "${rootDir}/vars/pipeline_lib.groovy " + pipeline_lib.run_pipelines() +} \ No newline at end of file