We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 590873f commit 878d37eCopy full SHA for 878d37e
ci-scripts/dockerfiles/tutorials.dockerfile
@@ -8,6 +8,10 @@ FROM reframehpc/rfm-ci-base:lmod
8
ENV _SPACK_VER=0.16
9
ENV _EB_VER=4.4.1
10
11
+# Required utilities
12
+RUN apt-get -y update && \
13
+ apt-get -y install curl
14
+
15
# ReFrame user
16
RUN useradd -ms /bin/bash rfmuser
17
tutorials/build_systems/spack/spack_test.py
@@ -19,6 +19,7 @@ class BZip2SpackCheck(rfm.RegressionTest):
19
@run_before('compile')
20
def setup_build_system(self):
21
self.build_system.environment = 'myenv'
22
+ self.build_system.specs = ['[email protected]']
23
24
@sanity_function
25
def assert_version(self):
0 commit comments