diff --git a/Jenkinsfile b/Jenkinsfile index 8e57171..157afa3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,7 @@ // Load Jenkins shared libraries for all Hypeledger Indy project -def libIndy =[ +def libIndy = [ remote: 'https://github.com/digital-me/indy-jenkins-lib.git', branch: 'draft-01', credentialsId: null, @@ -25,7 +25,7 @@ } // Initialize configuration -config = initConfig() +def config = initConfig() if (!config) { // Fail config is empty currentBuild.result = 'FAILURE' @@ -33,13 +33,13 @@ } // CI Pipeline -stageCompile() -stageTest() -stagePackage() +stageCompile(config) +stageTest(config) +stagePackage(config) // CD Pipeline if (config.extended) { - stageRelease() - stageDelivery() - stageNotify() + stageRelease(config) + stageDelivery(config) + stageNotify(config) } \ No newline at end of file