Skip to content

Commit

Permalink
Add mkl to fedora
Browse files Browse the repository at this point in the history
  • Loading branch information
streeve committed Dec 1, 2023
1 parent 1ca2d33 commit e0fabcc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'}
- {dockerfile: 'fedora', tag: 'intel', build_args: 'TAG=intel,INTEL=yes'}
- {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'}
Expand Down
2 changes: 2 additions & 0 deletions fedora
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ 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 ) && \
dnf clean all

USER kokkos
Expand Down

0 comments on commit e0fabcc

Please sign in to comment.