diff --git a/latest/.doctrees/Testing.doctree b/latest/.doctrees/Testing.doctree index 6669912a9f..a098ade500 100644 Binary files a/latest/.doctrees/Testing.doctree and b/latest/.doctrees/Testing.doctree differ diff --git a/latest/.doctrees/environment.pickle b/latest/.doctrees/environment.pickle index f20aa3576d..0f71e01374 100644 Binary files a/latest/.doctrees/environment.pickle and b/latest/.doctrees/environment.pickle differ diff --git a/latest/Testing.html b/latest/Testing.html index 0067bdee5c..8d81d147be 100644 --- a/latest/Testing.html +++ b/latest/Testing.html @@ -54,6 +54,7 @@
To test spack-c2sm with an uenv, add a stage
+stage('Create uenv') {
+ steps {
+ sh """
+ git clone -b fix/jenkins https://github.com/eth-cscs/uenv.git
+ ./uenv/install --yes --destdir=$WORKSPACE
+ source $WORKSPACE/etc/profile.d/uenv.sh
+ uenv repo create
+ uenv image pull mch/v8:rc2
+ """
+ }
+}
+
and run the tests in the uenv
+source $WORKSPACE/etc/profile.d/uenv.sh
+source ./setup-env.sh /user-environment
+uenv run mch/v8:rc2 -- pytest -v -n auto test/integration_test.py
+