Skip to content
Merged
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
7 changes: 5 additions & 2 deletions ci/ubuntu24-mpich/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,16 @@ ENV DEBIAN_FRONTEND=noninteractive

# Toolchain + CODES build deps (cmake/ninja/pkg-config/flex/bison), BOTH compilers
# the matrix drives (gcc via build-essential + clang), lcov for the coverage job,
# and the tools to fetch/build MPICH. Deliberately NO apt mpich -- we build our
# own below and put it ahead of everything on PATH.
# gettext-base for the surrogate tests' envsubst config templating (present on
# stock runners but not in the bare base image), and the tools to fetch/build
# MPICH. Deliberately NO apt mpich -- we build our own below and put it ahead of
# everything on PATH.
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential clang \
cmake ninja-build pkg-config \
flex bison \
lcov \
gettext-base \
git ca-certificates wget \
&& rm -rf /var/lib/apt/lists/*

Expand Down
Loading