From da5182bc4e7ecf1ac7b520bace3915013741ab38 Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Mon, 27 Aug 2018 12:33:51 -0400 Subject: Generalize for use within regression test jobs (#14) * Install conda if it's not present during build. * Purge workspace within node def, and only on first node processed. * install dir uses workspace base * Prevent multiple conda installer downloads in a shared environment. * Update doc --- src/BuildConfig.groovy | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/BuildConfig.groovy b/src/BuildConfig.groovy index 9eeb3f0..a43ede6 100644 --- a/src/BuildConfig.groovy +++ b/src/BuildConfig.groovy @@ -4,9 +4,12 @@ package BuildConfig; class BuildConfig implements Serializable { def nodetype = "" def name = "" + def conda_packages = [] def conda_override_channels = false def conda_channels = [] + def conda_ver = null + def env_vars = [] def env_vars_raw = [] def build_cmds = [] -- cgit