From 7095ef2b6b2fd3a4a4616826e45e8feb35a7d621 Mon Sep 17 00:00:00 2001 From: Vasileios Karakasis Date: Wed, 23 Oct 2024 10:44:43 +0200 Subject: [PATCH] Fix failing Spack unit tests + use latest EB and Spack --- ci-scripts/dockerfiles/eb-spack-howto.dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ci-scripts/dockerfiles/eb-spack-howto.dockerfile b/ci-scripts/dockerfiles/eb-spack-howto.dockerfile index 42f3dc4b6..f30818949 100644 --- a/ci-scripts/dockerfiles/eb-spack-howto.dockerfile +++ b/ci-scripts/dockerfiles/eb-spack-howto.dockerfile @@ -5,13 +5,13 @@ FROM ghcr.io/reframe-hpc/lmod:8.4.12 -ENV _SPACK_VER=0.16 -ENV _EB_VER=4.4.1 +ENV _SPACK_VER=0.22.2 +ENV _EB_VER=4.9.4 # Install ReFrame unit test requirements RUN apt-get -y update && \ - apt-get -y install gcc git make python3 python3-pip + apt-get -y install gcc git make python3 python3-pip curl # ReFrame user RUN useradd -ms /bin/bash rfmuser @@ -19,7 +19,7 @@ RUN useradd -ms /bin/bash rfmuser USER rfmuser # Install Spack -RUN git clone --branch releases/v${_SPACK_VER} https://github.com/spack/spack ~/spack && \ +RUN git clone --branch v${_SPACK_VER} https://github.com/spack/spack ~/spack && \ cd ~/spack RUN pip3 install easybuild==${_EB_VER}