From fb9d8bcf17857a01d9f4846efeaa9cbc61c97d5b Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Tue, 28 Nov 2017 10:30:47 -0500 Subject: Rename class --- vars/utils.groovy | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'vars') diff --git a/vars/utils.groovy b/vars/utils.groovy index e0b8d4b..4c3771d 100644 --- a/vars/utils.groovy +++ b/vars/utils.groovy @@ -1,5 +1,5 @@ // Jenkinsfile utilities -import bconfig.bconfig +import BuildConfig.BuildConfig // Clone the source repository and examine the most recent commit message. // If a '[ci skip]' or '[skip ci]' directive is present, immediately @@ -37,8 +37,6 @@ class TClass implements Serializable { def concurrent2(configs) { def tasks = [:] println("Size of configs = ${configs.size()}") - def myconf = new bconfig() - println("myconf.name = ${myconf.name}") for (config in configs) { t = new TClass() println("concurrent2: build.nodetype = ${config.nodetype}") @@ -46,7 +44,6 @@ def concurrent2(configs) { println("concurrent2: build.build_args= ${config.build_args}") println("concurrent2: build.env_vars= ${config.env_vars}") def run_tests = config.run_tests - def tmp_config = new bconfig() tasks["${config.nodetype}/${config.build_mode}"] = { node(config.nodetype) { //withEnv(config.env_vars) { -- cgit