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() +}