diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 0b23379..8e0630a 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -25,7 +25,7 @@ jobs: - {dockerfile: 'ubuntu', tag: 'rolling', build_args: 'TAG=rolling'} - {dockerfile: 'ubuntu', tag: 'devel', build_args: 'TAG=devel', continue-on-error: 'true'} - {dockerfile: 'opensuse', tag: 'latest'} - - {dockerfile: 'fedora', tag: 'intel', build_args: 'TAG=intel,INTEL=yes'} + - {dockerfile: 'ubuntu', tag: 'intel', build_args: 'TAG=intel'} - {dockerfile: 'fedora', tag: 'nompi', build_args: 'MPI=no'} - {dockerfile: 'rocm', tag: 'latest', continue-on-error: 'true'} - {dockerfile: 'cuda', tag: '12.2.0', continue-on-error: 'true'} diff --git a/fedora b/fedora index 188ec33..7efd31d 100644 --- a/fedora +++ b/fedora @@ -2,14 +2,12 @@ ARG TAG=latest FROM ghcr.io/kokkos/ci-containers/fedora:${TAG} ARG MPI=yes -ARG INTEL=no USER root RUN ( dnf -y update || dnf -y update ) && \ dnf -y install \ fftw-devel doxygen valgrind libasan gtest-devel && \ ( test "${MPI}" != "yes" || dnf -y install openmpi-devel hdf5-openmpi-devel ) && \ - ( test "${INTEL}" != "yes" || dnf -y install intel-oneapi-mkl-devel intel-oneapi-compiler-dpcpp-cpp ) && \ dnf clean all USER kokkos