Update Jenkinsfile

This commit is contained in:
surtexx 2023-11-14 10:30:12 +02:00 committed by GitHub
parent f57bc5b83e
commit 7e8534516b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

8
Jenkinsfile vendored
View file

@ -1,5 +1,7 @@
import vars.pipeline_lib
node { node {
def rootDir = pwd() def rootDir = pwd()
def pipeline_lib = load "${rootDir}/vars/pipeline_lib.groovy " def pipelines = new pipeline_lib()
pipeline_lib.run_pipelines() pipelines.run_pipelines()
} }