From 27aa04e653014888fa203204150eefc4bc804804 Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Fri, 10 May 2019 14:00:37 -0400 Subject: Quote filenames passed to sed for robustness (#49) * Test env dump on CI system * Quote filenames in sed calls to accommodate spaces * Quote dump_name for robustness. * Correct jenkinsfile --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Jenkinsfile') diff --git a/Jenkinsfile b/Jenkinsfile index 1a7ff4c..0703725 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,3 +1,4 @@ +@Library('utils@test_yml') _ // [skip ci] and [ci skip] have no effect here. if (utils.scm_checkout(['skip_disable':true])) return @@ -51,7 +52,7 @@ bc1.test_cmds[1] = "${PYTEST} tests/test_25pass.py" bc2 = utils.copy(bc0) bc2.name = 'Third build config' -bc2.conda_packages = [] +bc2.conda_packages = ['python=3.6'] bc2.build_cmds = ["which python"] bc2.test_cmds = ["ls -al"] bc2.test_configs = [] -- cgit