Skip to content
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
7 changes: 7 additions & 0 deletions tools/tests/dockerfiles/ubuntu_2404/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,15 @@ RUN python3 -m venv /home/precice/venv && \
. /home/precice/venv/bin/activate && \
git clone https://github.com/precice/micro-manager.git && \
cd micro-manager && \
if [ -n "${MICRO_MANAGER_PR}" ]; then git fetch origin pull/${MICRO_MANAGER_PR}/head; fi && \
git checkout ${MICRO_MANAGER_VERSION} && \
pip3 install .
WORKDIR /home/precice
RUN python3 -m venv /home/precice/venv && \
. /home/precice/venv/bin/activate && \
pip3 install pybind11
ENV pybind11_DIR = "/home/precice/venv/lib/python3.13/site-packages/pybind11/share/cmake/pybind11"


FROM micro_manager AS dumux_adapter
USER root
Expand Down
2 changes: 1 addition & 1 deletion tools/tests/reference_versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ SU2_ADAPTER_REF: "64d4aff" # Distribution v2404
DEALII_ADAPTER_REF: "02c5d18" # develop, April 12, 2025
DUNE_VERSION: "2.9"
DUMUX_VERSION: "3.7"
DUMUX_ADAPTER_REF: "v3.0.0"
DUMUX_ADAPTER_REF: "0e914bb" # develop, March 18, 2026
MICRO_MANAGER_VERSION: "v0.8.0"
10 changes: 5 additions & 5 deletions tools/tests/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,16 @@ test_suites:
reference_result: ./perpendicular-flap/reference-results/fluid-openfoam_solid-calculix.tar.gz
dumux_test:
tutorials:
- path: free-flow-over-porous-media
case_combination:
- free-flow-dumux
- porous-media-dumux
reference_result: ./free-flow-over-porous-media/reference-results/free-flow-dumux_porous-media-dumux.tar.gz
- path: two-scale-heat-conduction
case_combination:
- macro-dumux
- micro-dumux
reference_result: ./two-scale-heat-conduction/reference-results/macro-dumux_micro-dumux.tar.gz
- path: free-flow-over-porous-media
case_combination:
- free-flow-dumux
- porous-media-dumux
reference_result: ./free-flow-over-porous-media/reference-results/free-flow-dumux_porous-media-dumux.tar.gz
su2_test:
tutorials:
- path: perpendicular-flap
Expand Down
2 changes: 1 addition & 1 deletion two-scale-heat-conduction/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ cases:
micro-dumux:
participant: Micro-Manager
directory: ./micro-dumux
run: ./run.sh -l /home/precice/dumux
run: source /home/precice/venv/bin/activate && ./run.sh -l /home/precice/dumux
component: dumux-adapter
Loading