Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pygeosx testing #259

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
12 changes: 10 additions & 2 deletions docker/tpl-ubuntu-clang.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ ARG SRC_DIR

COPY --from=tpl_toolchain $GEOSX_TPL_DIR $GEOSX_TPL_DIR

RUN apt-get install -y --no-install-recommends \
RUN DEBIAN_FRONTEND=noninteractive TZ=America/Los_Angeles \
apt-get install -y --no-install-recommends \
openssh-client \
ca-certificates \
curl \
Expand All @@ -83,7 +84,14 @@ RUN apt-get install -y --no-install-recommends \
libxml2-utils \
git \
ghostscript \
ninja-build
ninja-build \
python3-dev \
python3-mpi4py \
python3-scipy \
python3-virtualenv \
python3-matplotlib \
python3-venv \
python3-pytest

RUN --mount=src=.,dst=$SRC_DIR $SRC_DIR/docker/install-sccache.sh
ENV SCCACHE=/opt/sccache/bin/sccache
12 changes: 10 additions & 2 deletions docker/tpl-ubuntu-gcc.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ ARG SRC_DIR
COPY --from=tpl_toolchain $GEOSX_TPL_DIR $GEOSX_TPL_DIR

# Any tool specific to building GEOSX shall be installed in this stage.
RUN apt-get install -y --no-install-recommends \
RUN DEBIAN_FRONTEND=noninteractive TZ=America/Los_Angeles \
apt-get install -y --no-install-recommends \
openssh-client \
# `ca-certificates` is needed by `sccache` to download the cached compilations.
ca-certificates \
Expand All @@ -120,7 +121,14 @@ RUN apt-get install -y --no-install-recommends \
libxml2-utils \
git \
ghostscript \
ninja-build
ninja-build \
python3-dev \
python3-mpi4py \
python3-scipy \
python3-virtualenv \
python3-matplotlib \
python3-venv \
python3-pytest

# Install `sccache` binaries to speed up the build of `geos`
RUN --mount=src=.,dst=$SRC_DIR $SRC_DIR/docker/install-sccache.sh
Expand Down