From a20b06e7b41c349f2b4d878660dafc10f289b0bd Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Mon, 20 Nov 2023 09:07:16 -0500 Subject: [PATCH] Also provide a Ubuntu image for Intel compilers --- .../workflows/continuous-integration-workflow.yml | 1 + ubuntu | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 8394d2a..f135258 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -20,6 +20,7 @@ jobs: - {dockerfile: 'ubuntu', tag: 'latest'} - {dockerfile: 'ubuntu', tag: 'rolling', build_args: 'TAG=rolling'} - {dockerfile: 'ubuntu', tag: 'devel', build_args: 'TAG=devel', continue-on-error: 'true'} + - {dockerfile: 'ubuntu', tag: 'intel', build_args: 'TAG=22.04,INTEL=yes', continue-on-error: 'true'} - {dockerfile: 'opensuse', tag: 'latest'} - {dockerfile: 'fedora', tag: 'intel', build_args: 'TAG=37,INTEL=yes', continue-on-error: 'true'} runs-on: ubuntu-latest diff --git a/ubuntu b/ubuntu index a2bbd51..cd086cd 100644 --- a/ubuntu +++ b/ubuntu @@ -1,6 +1,8 @@ ARG TAG=latest FROM ubuntu:${TAG} +ARG INTEL + ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ apt-get upgrade -y && \ @@ -9,8 +11,18 @@ RUN apt-get update && \ apt-get purge --autoremove -y && \ rm -rf /var/lib/apt/lists/* +RUN if [ "${INTEL}" = "yes" ]; then \ + wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null && \ + echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list && \ + apt-get update && \ + apt-get install -y intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic intel-oneapi-mkl-devel && \ + apt-get clean; \ +fi + RUN useradd -m -G sudo -u 1001 kokkos RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers USER kokkos +ENV PATH=${INTEL:+/opt/intel/oneapi/compiler/latest/linux/bin:/opt/intel/oneapi/compiler/latest/linux/bin/intel64}${PATH:+:}${PATH} +ENV LD_LIBRARY_PATH=${INTEL:+/opt/intel/oneapi/compiler/latest/linux/compiler/lib/intel64:/opt/intel/oneapi/mkl/latest/lib/intel64}${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH} ENV CCACHE_MAXSIZE=250M WORKDIR /home/kokkos