Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
akashdhruv committed Jan 25, 2022
1 parent c0bd5b8 commit d2aea31
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/incompFlow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
16 changes: 10 additions & 6 deletions incompFlow/LidDrivenCavity/Maplefile
Original file line number Diff line number Diff line change
@@ -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"
16 changes: 10 additions & 6 deletions incompFlow/PoolBoiling/Maplefile
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit d2aea31

Please sign in to comment.