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