From a4f55e4f63d529c6e3bfc6fb19db6af081f579b5 Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Wed, 13 Jun 2018 11:37:36 -0400 Subject: [PATCH] Change 'build_mode' to 'name' to reflect CI utils update. --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0ccae308a..6b9dd4be0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,7 @@ if (utils.scm_checkout()) return // Define each build configuration, copying and overriding values as necessary. bc0 = new BuildConfig() bc0.nodetype = "linux-stable" -bc0.build_mode = "debug" +bc0.name = "debug" bc0.build_cmds = ["conda env update --file=environment.yml", "with_env -n jwql python setup.py install"] bc0.test_cmds = ["with_env -n jwql pytest --junitxml=result.xml"] @@ -18,4 +18,4 @@ bc0.failedFailureThresh = 1 // Iterate over configurations that define the (distibuted) build matrix. // Spawn a host of the given nodetype for each combination and run in parallel. -utils.run([bc0]) \ No newline at end of file +utils.run([bc0])