Skip to content
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 spack/ci-spack-pyprecice-deps-1804.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ FROM spack/ubuntu-bionic:latest
RUN spack env create precice
# Install dependencies for precice and py-pyprecice
RUN spack env activate precice \
&& spack add boost@1.74.0 cmake@3.18.4 eigen@3.3.8 petsc@3.14.1 pkgconfig precice@develop py-setuptools py-wheel py-cython py-numpy py-mpi4py \
&& spack add boost@1.74.0 cmake@3.18.4 eigen@3.3.8 openssh petsc@3.14.1 pkgconfig precice@develop py-setuptools py-wheel py-cython py-numpy py-mpi4py \
&& spack concretize -f \
&& spack install
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class PyPyprecice(PythonPackage):
variant("mpi", default=True, description="Enables MPI support")

depends_on("mpi", when="+mpi")
depends_on("openssh")
depends_on("precice", when="@develop")
depends_on("precice@2.1.1", when="@2.1.1.1:2.1.1.99")
depends_on("precice@2.1.0", when="@2.1.0.1:2.1.0.99")
Expand Down