Skip to content

Commit

Permalink
Fix broken intel images
Browse files Browse the repository at this point in the history
It seems intel recently came out with the 2023.2.0 versions of these
packages, and those were picked with the most recent build.  When
the newest versions were chosen, we could no longer load the "icc"
or "compiler" modules, so pin to the previous working version.
  • Loading branch information
scottwittenburg committed Aug 1, 2023
1 parent 9e582aa commit af83421
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/ci/images/Dockerfile.ci-el8-intel
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ RUN dnf install -y \
COPY oneAPI.repo /etc/yum.repos.d/
RUN pip3 install numpy && \
dnf install -y \
intel-oneapi-compiler-dpcpp-cpp \
intel-oneapi-compiler-fortran \
intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic
intel-oneapi-compiler-dpcpp-cpp-2023.1.0 \
intel-oneapi-compiler-fortran-2023.1.0 \
intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic-2023.1.0
RUN dnf clean all

# Setup module files for the compilers
Expand Down

0 comments on commit af83421

Please sign in to comment.