Skip to content

Commit

Permalink
sootrad into ci
Browse files Browse the repository at this point in the history
  • Loading branch information
baperry2 committed Nov 22, 2023
1 parent e55e6cf commit 3f5d443
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,57 @@ jobs:
run: |
mpirun -n 2 ./PeleLMeX3d.gnu.MPI.ex input.3d-regt amr.max_step=2 amr.plot_int=-1 amr.check_int=-1 amr.n_cell=128 32 32
# Build and Run the SootRadTest RegTest with GNU9.3 and MPI support
SOOTRAD:
name: [email protected] MPI Run [SootRadTest]
runs-on: ubuntu-latest
env:
{CXXFLAGS: "-Werror -Wshadow -Woverloaded-virtual -Wunreachable-code"}
steps:
- uses: actions/checkout@v3
- name: System Dependencies
run: .github/workflows/dependencies/dependencies_gcc10.sh
- name: Repo Dependencies
run: |
Utils/CloneDeps.sh
cd ${GITHUB_WORKSPACE}/build/amrex
git remote add wzhang https://github.com/WeiqunZhang/amrex.git
git fetch wzhang eb_robin
git checkout eb_robin
cd -
git clone --branch main https://github.com/AMReX-Combustion/PeleRad.git
- name: Build Release
env:
AMREX_HOME: ${GITHUB_WORKSPACE}/build/amrex
PELE_PHYSICS_HOME: ${GITHUB_WORKSPACE}/build/PelePhysics
PELERAD_HOME: ${GITHUB_WORKSPACE}/build/PeleRad
PELELMEX_HOME: ${GITHUB_WORKSPACE}
AMREX_HYDRO_HOME: ${GITHUB_WORKSPACE}/build/AMReX-Hydro
SUNDIALS_HOME : ${GITHUB_WORKSPACE}/build/sundials
working-directory: ./Exec/RegTests/SootRadTest/
run: |
make TPL COMP=gnu USE_MPI=TRUE
make -j 2 COMP=gnu USE_MPI=TRUE
- name: Run Release
working-directory: ./Exec/RegTests/SootRadTest/
run: |
mpirun -n 2 ./PeleLMeX2d.gnu.MPI.ex input.2d amr.max_step=2 amr.plot_int=2 amr.check_int=2 pelerad.kppath="$PELERAD_HOME/data/kpDB/"
- name: Build Debug
env:
AMREX_HOME: ${GITHUB_WORKSPACE}/build/amrex
PELE_PHYSICS_HOME: ${GITHUB_WORKSPACE}/build/PelePhysics
PELERAD_HOME: ${GITHUB_WORKSPACE}/build/PeleRad
PELELMEX_HOME: ${GITHUB_WORKSPACE}
AMREX_HYDRO_HOME: ${GITHUB_WORKSPACE}/build/AMReX-Hydro
SUNDIALS_HOME : ${GITHUB_WORKSPACE}/build/sundials
working-directory: ./Exec/RegTests/SootRadTest/
run: |
make TPL COMP=gnu USE_MPI=TRUE DEBUG=TRUE
make -j 2 COMP=gnu USE_MPI=TRUE DEBUG=TRUE
- name: Run Debug
working-directory: ./Exec/RegTests/SootRadTest/
run: |
mpirun -n 2 ./PeleLMeX2d.gnu.MPI.ex input.2d amr.max_step=2 amr.plot_int=2 amr.check_int=2 pelerad.kppath="$PELERAD_HOME/data/kpDB/"
# Build and Run the EB_BackwardStepFlame RegTest with GNU9.3 and MPI support
EBBFS:
Expand Down

0 comments on commit 3f5d443

Please sign in to comment.