From d2aea31c51e518bcb15540e6484626b60b49b074 Mon Sep 17 00:00:00 2001 From: Akash Dhruv Date: Tue, 25 Jan 2022 01:51:39 -0500 Subject: [PATCH] update workflows --- .github/workflows/incompFlow.yml | 4 ++-- incompFlow/LidDrivenCavity/Maplefile | 16 ++++++++++------ incompFlow/PoolBoiling/Maplefile | 16 ++++++++++------ 3 files changed, 22 insertions(+), 14 deletions(-) diff --git a/.github/workflows/incompFlow.yml b/.github/workflows/incompFlow.yml index 2c17d41..236159a 100644 --- a/.github/workflows/incompFlow.yml +++ b/.github/workflows/incompFlow.yml @@ -21,7 +21,7 @@ jobs: sudo apt-get install -y libopenmpi-dev openmpi-bin cd incompFlow/LidDrivenCavity maple image build lidcav - mpirun -n 1 maple container run --image=lidcav "/home/run/flashx" + mpirun -n 1 maple container run --image=lidcav PoolBoiling: name: "PoolBoiling" @@ -35,4 +35,4 @@ jobs: sudo apt-get install -y libopenmpi-dev openmpi-bin cd incompFlow/PoolBoiling maple image build boiling - mpirun -n 1 maple container run --image=boiling "/home/run/flashx" + mpirun -n 1 maple container run --image=boiling diff --git a/incompFlow/LidDrivenCavity/Maplefile b/incompFlow/LidDrivenCavity/Maplefile index 508eead..a784ae1 100644 --- a/incompFlow/LidDrivenCavity/Maplefile +++ b/incompFlow/LidDrivenCavity/Maplefile @@ -1,12 +1,16 @@ # Maplefile for Flash-X -# VARIABLE DESCRIPTION -# ---------------------------------------------------------------- -# base Name of the base image -# container Name of the local container -# target Name of the target dir to mount source dir -# backend Container backend (docker/singularity) +# Name of the base image base="docker://akashdhruv/flashx:lidcav" + +# Name of the local container container="lidcav" + +# Name of the mount directory inside the container target="/home/mount/lidcav" + +# Container backend backend="singularity" + +# Default command for run +run="/home/run/flashx" diff --git a/incompFlow/PoolBoiling/Maplefile b/incompFlow/PoolBoiling/Maplefile index d8b7c15..bef41d6 100644 --- a/incompFlow/PoolBoiling/Maplefile +++ b/incompFlow/PoolBoiling/Maplefile @@ -1,12 +1,16 @@ # Maplefile for Flash-X -# VARIABLE DESCRIPTION -# ---------------------------------------------------------------- -# base Name of the base image -# container Name of the local container -# target Name of the target dir to mount source dir -# backend Container backend (docker/singularity) +# Name of the base image base="docker://akashdhruv/flashx:boiling" + +# Name of the local container container="flashx" + +# Name of the mount directory inside the container target="/home/mount/simulation" + +# Container backend backend="singularity" + +# Default command for run +run="/home/run/flashx"