Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build_test_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- tag: gnu
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_test_makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
include:
- tag: intel
build_args: "CXX=mpiicpc ELPA_LIB_DIR=/usr/local/lib ELPA_INCLUDE_DIR=/usr/local/include CEREAL_DIR=/usr/include/cereal OPENMP=ON"
build_args: "CXX=mpiicpx ELPA_LIB_DIR=/usr/local/lib ELPA_INCLUDE_DIR=/usr/local/include CEREAL_DIR=/usr/include/cereal OPENMP=ON"
name: "Build with Makefile & Intel compilers"
name: ${{ matrix.name }}
container: ghcr.io/deepmodeling/abacus-${{ matrix.tag }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
startsWith(github.ref, 'refs/tags/v'))

strategy:
fail-fast: false
matrix:
dockerfile:
- gnu
Expand Down
6 changes: 5 additions & 1 deletion Dockerfile.intel
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ FROM intel/oneapi-hpckit:2025.2.2-0-devel-ubuntu22.04
RUN apt-get update && apt-get install -y \
bc cmake git gnupg gcc g++ python3-numpy sudo wget vim unzip \
libcereal-dev libxc-dev libgtest-dev libgmock-dev libbenchmark-dev \
pkg-config build-essential autoconf automake libtool && \
pkg-config build-essential autoconf automake libtool ca-certificates && \
rm -rf /var/lib/apt/lists/*

ENV CC="mpiicx"
ENV CXX="mpiicpx"
ENV FC="mpiifx"

# https://elpa.mpcdf.mpg.de/software/tarball-archive/ELPA_TARBALL_ARCHIVE.html
RUN cd /tmp && \
ELPA_VER=2022.11.001 && \
Expand Down
Loading