Skip to content

Commit

Permalink
Merge pull request #992 from chuckatkins/add-valgrind-to-docker-images
Browse files Browse the repository at this point in the history
Add valgrind to docker images
  • Loading branch information
Chuck Atkins committed Nov 8, 2018
2 parents 1bd98c6 + d20c07b commit d2fe122
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion scripts/circle/el7-gnu7-ohpc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM centos:centos7

# Install core dev packages
RUN yum -y install make curl file git \
RUN yum -y install make curl file git valgrind vim \
gdb zlib zlib-devel bzip2 bzip2-libs bzip2-devel
RUN yum -y install epel-release
RUN yum -y install zeromq-devel python34-devel
Expand Down
2 changes: 1 addition & 1 deletion scripts/circle/el7-gnu7-openmpi-ohpc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM centos:centos7

# Install core dev packages
RUN yum -y install make curl file git gcc pkg-config \
RUN yum -y install make curl file git gcc pkg-config valgrind vim \
gdb zlib zlib-devel bzip2 bzip2-libs bzip2-devel
RUN yum -y install epel-release
RUN yum -y install zeromq-devel python34-devel
Expand Down
2 changes: 1 addition & 1 deletion scripts/circle/el7-intel18-ohpc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM centos:centos7

# Install core dev packages
RUN yum -y install make curl file git \
RUN yum -y install make curl file git valgrind vim \
gdb zlib zlib-devel bzip2 bzip2-libs bzip2-devel python-devel
RUN yum -y install epel-release
RUN yum -y install zeromq-devel
Expand Down
2 changes: 1 addition & 1 deletion scripts/circle/el7-intel18-openmpi-ohpc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM centos:centos7

# Install core dev packages
RUN yum -y install make curl file git gcc pkg-config \
RUN yum -y install make curl file git gcc pkg-config valgrind vim \
gdb zlib zlib-devel bzip2 bzip2-libs bzip2-devel python-devel
RUN yum -y install epel-release
RUN yum -y install zeromq-devel
Expand Down
2 changes: 1 addition & 1 deletion scripts/circle/el7/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM centos:centos7

# Install core dev packages
RUN yum -y install gcc gcc-c++ gcc-gfortran git make curl file \
RUN yum -y install gcc gcc-c++ gcc-gfortran git make curl file valgrind vim \
gdb zlib zlib-devel bzip2 bzip2-libs bzip2-devel python-devel numpy \
RUN yum -y install epel-release
RUN yum -y install zeromq-devel hdf5 hdf5-devel
Expand Down
2 changes: 1 addition & 1 deletion scripts/circle/fedora-openmpi-ubsan/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM fedora:latest

# Install core dev packages
RUN dnf -y install gcc gcc-c++ gcc-gfortran cmake git make curl file patch \
zlib-devel bzip2-devel openmpi-devel hdf5-openmpi-devel \
zlib-devel bzip2-devel openmpi-devel hdf5-openmpi-devel vim valgrind \
python3-devel python3-numpy python3-mpi4py-openmpi zeromq-devel libubsan

# Patch the installed Lmod to properly deal with a CMake shell
Expand Down
2 changes: 1 addition & 1 deletion scripts/circle/fedora-ubsan/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM fedora:latest

# Install core dev packages
RUN dnf -y install gcc gcc-c++ gcc-gfortran cmake git make curl file \
zlib zlib-devel bzip2-libs bzip2-devel hdf5 hdf5-devel \
zlib zlib-devel bzip2-libs bzip2-devel hdf5 hdf5-devel vim valgrind \
python3-devel python3-numpy zeromq zeromq-devel libubsan

# Cleanup headers and packages
Expand Down
2 changes: 1 addition & 1 deletion scripts/circle/suse-pgi-openmpi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM opensuse:42.3
# Install core dev packages
RUN zypper ref
RUN zypper in -y gcc gcc-c++ gcc-fortran git make curl tar f2c glibc-locale \
glibc-devel libbz2-devel pkg-config libzmq-devel zlib-devel
glibc-devel libbz2-devel pkg-config libzmq-devel zlib-devel gdb vim valgrind

# Workaround so pgi can find g77
WORKDIR /usr/bin
Expand Down
2 changes: 1 addition & 1 deletion scripts/circle/suse-pgi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM opensuse:42.3
RUN zypper ref
RUN zypper in -y gcc gcc-c++ gcc-fortran git make curl tar f2c glibc-locale \
glibc-devel libbz2-devel python-devel python-numpy pkg-config libzmq-devel \
hdf5-devel zlib-devel
hdf5-devel zlib-devel vim valgrind gdb

# Workaround so pgi can find g77
WORKDIR /usr/bin
Expand Down

0 comments on commit d2fe122

Please sign in to comment.