aboutsummaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile13
1 files changed, 9 insertions, 4 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 25758ae..0ebbf0f 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -1,4 +1,4 @@
-//@Library('utils@ymlfix') _
+//@Library('utils@homedir') _
// [skip ci] and [ci skip] have no effect here.
if (utils.scm_checkout(['skip_disable':true])) return
@@ -35,7 +35,10 @@ bc0.env_vars = ['VAR_ONE=1',
bc0.conda_ver = '4.6.4'
bc0.conda_packages = ['python=3.6',
'pytest']
-bc0.build_cmds = ["date",
+bc0.build_cmds = ["env",
+ "ls -al ..", // Workspace root.
+ "ls -al", // Project clone dir.
+ "conda config --show",
"./access_env_var.sh",
"which python",
"conda install ipython"]
@@ -53,8 +56,10 @@ bc1.test_cmds[1] = "${PYTEST} tests/test_25pass.py"
bc2 = utils.copy(bc0)
bc2.name = 'Third build config'
bc2.conda_packages = ['python=3.6']
-bc2.build_cmds = ["which python"]
-bc2.test_cmds = ["ls -al"]
+bc2.build_cmds = ["env",
+ "which python"]
+bc2.test_cmds = ["ls -al ..", // Workspace root.
+ "ls -al"] // Project clone dir.
bc2.test_configs = []