Skip to content
This repository was archived by the owner on Aug 14, 2025. It is now read-only.
Merged
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
2 changes: 1 addition & 1 deletion precice/Dockerfile.Arch
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN mkdir /home/precice/precice-build && \
cd /home/precice/precice-build && \
mkdir /home/precice/precice-install && \
cmake -DBUILD_SHARED_LIBS=ON \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_BUILD_TYPE=Debug \
-DPRECICE_CTEST_MPI_FLAGS="--oversubscribe" \
-DCMAKE_INSTALL_PREFIX=/home/precice/precice-install \
-DPRECICE_PETScMapping=$petsc_para \
Expand Down
6 changes: 3 additions & 3 deletions precice/Dockerfile.Ubuntu1604.home
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get -qq update && apt-get -qq install \
python-numpy \
python-dev \
wget \
pkg-config \
pkg-config \
bzip2 && \
rm -rf /var/lib/apt/lists/*

Expand Down Expand Up @@ -41,7 +41,7 @@ ARG gid=1000
ARG CACHEBUST

# create user precice
RUN groupadd -g ${gid} precice \
RUN groupadd -g ${gid} precice \
&& useradd -u ${uid} -g ${gid} -m -s /bin/bash precice
USER precice
WORKDIR /home/precice
Expand All @@ -68,7 +68,7 @@ RUN mkdir /home/precice/precice-build && \
cd /home/precice/precice-build && \
mkdir /home/precice/precice-install && \
cmake -DBUILD_SHARED_LIBS=ON \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_BUILD_TYPE=Debug \
-DCMAKE_INSTALL_PREFIX=/home/precice/precice-install \
-DPRECICE_PETScMapping=$petsc_para \
-DPRECICE_MPICommunication=$mpi_para \
Expand Down
4 changes: 2 additions & 2 deletions precice/Dockerfile.Ubuntu1604.package
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ RUN mkdir /home/precice/precice-build && \
-DPRECICE_Packages=ON \
-DPRECICE_InstallTest=ON \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_BUILD_TYPE=Debug \
-DPRECICE_PETScMapping=$petsc_para \
-DPRECICE_MPICommunication=$mpi_para \
-DPRECICE_PythonActions=$python_para \
/home/precice/precice && \
/home/precice/precice && \
make -j$(nproc) && \
make test_base && \
make package && \
Expand Down
2 changes: 1 addition & 1 deletion precice/Dockerfile.Ubuntu1604.sudo
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ ARG python_para=no
# Build preCICE, install into /usr/local and clean-up the build directory
RUN mkdir /home/precice/precice-build && \
cd /home/precice/precice-build && \
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \
cmake -DCMAKE_BUILD_TYPE=Debug \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_INSTALL_PREFIX=/usr/local \
-DPRECICE_PETScMapping=$petsc_para \
Expand Down
4 changes: 2 additions & 2 deletions precice/Dockerfile.Ubuntu1804.home
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ARG CACHEBUST
# create user precice
ARG uid=1000
ARG gid=1000
RUN groupadd -g ${gid} precice \
RUN groupadd -g ${gid} precice \
&& useradd -u ${uid} -g ${gid} -m -s /bin/bash precice
USER precice
WORKDIR /home/precice
Expand All @@ -51,7 +51,7 @@ RUN mkdir /home/precice/precice-build && \
cd /home/precice/precice-build && \
mkdir /home/precice/precice-install && \
cmake -DBUILD_SHARED_LIBS=ON \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_BUILD_TYPE=Debug \
-DCMAKE_INSTALL_PREFIX=/home/precice/precice-install \
-DPRECICE_PETScMapping=$petsc_para \
-DPRECICE_MPICommunication=$mpi_para \
Expand Down
2 changes: 1 addition & 1 deletion precice/Dockerfile.Ubuntu1804.package
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ RUN mkdir /home/precice/precice-build && \
-DPRECICE_Packages=ON \
-DPRECICE_InstallTest=ON \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_BUILD_TYPE=Debug \
-DPRECICE_PETScMapping=$petsc_para \
-DPRECICE_MPICommunication=$mpi_para \
-DPRECICE_PythonActions=$python_para \
Expand Down
2 changes: 1 addition & 1 deletion precice/Dockerfile.Ubuntu1804.sudo
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ARG python_para=no
# Build preCICE, install into /usr/local and clean-up the build directory
RUN mkdir /home/precice/precice-build && \
cd /home/precice/precice-build && \
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \
cmake -DCMAKE_BUILD_TYPE=Debug \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_INSTALL_PREFIX=/usr/local \
-DPRECICE_PETScMapping=$petsc_para \
Expand Down
2 changes: 1 addition & 1 deletion precice/Dockerfile.Ubuntu1804.sudo.mpich
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ARG python_para=no
# Build preCICE, install into /usr/local and clean-up the build directory
RUN mkdir /home/precice/precice-build && \
cd /home/precice/precice-build && \
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \
cmake -DCMAKE_BUILD_TYPE=Debug \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_INSTALL_PREFIX=/usr/local \
-DPRECICE_PETScMapping=$petsc_para \
Expand Down