-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make tests smaller but run more of them in CI (#300)
* dont fillpatch react data in derives when not doing reactions * remove extraneous file in flamesheet * make flamesheet tests smaller * peleLM uses amr.max_step not max_step * update flowcontrol header name in TripleFlame case * make tests smaller * do more tests in CI * fix no EB checkl for Efield * add some mass conservation verification * add EFIELD and EBBFS tests * fix new tests * fix unused variables * more fixes for TripleFlame case * remove commented code
- Loading branch information
Showing
16 changed files
with
228 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,6 +83,63 @@ 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 EB_BackwardStepFlame RegTest with GNU9.3 and MPI support | ||
EBBFS: | ||
name: [email protected] MPI Run [EBBFS] | ||
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 | ||
- name: Build | ||
env: | ||
AMREX_HOME: ${GITHUB_WORKSPACE}/build/amrex | ||
PELE_PHYSICS_HOME: ${GITHUB_WORKSPACE}/build/PelePhysics | ||
PELELMEX_HOME: ${GITHUB_WORKSPACE} | ||
AMREX_HYDRO_HOME: ${GITHUB_WORKSPACE}/build/AMReX-Hydro | ||
SUNDIALS_HOME : ${GITHUB_WORKSPACE}/build/sundials | ||
working-directory: ./Exec/RegTests/EB_BackwardStepFlame/ | ||
run: | | ||
make TPL COMP=gnu USE_MPI=TRUE | ||
make -j 2 COMP=gnu USE_MPI=TRUE | ||
- name: Run | ||
working-directory: ./Exec/RegTests/EB_BackwardStepFlame/ | ||
run: | | ||
mpirun -n 2 ./PeleLMeX2d.gnu.MPI.ex input.2d amr.max_step=2 amr.plot_int=-1 amr.check_int=-1 | ||
# Build and Run the Efield flamesheet with GNU9.3 and MPI support | ||
EFIELD: | ||
name: [email protected] MPI Run [EFIELD] | ||
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 | ||
- name: Build | ||
env: | ||
AMREX_HOME: ${GITHUB_WORKSPACE}/build/amrex | ||
PELE_PHYSICS_HOME: ${GITHUB_WORKSPACE}/build/PelePhysics | ||
PELELMEX_HOME: ${GITHUB_WORKSPACE} | ||
AMREX_HYDRO_HOME: ${GITHUB_WORKSPACE}/build/AMReX-Hydro | ||
SUNDIALS_HOME : ${GITHUB_WORKSPACE}/build/sundials | ||
working-directory: ./Exec/Efield/FlameSheetIons | ||
run: | | ||
make TPL COMP=gnu USE_MPI=TRUE | ||
make -j 2 COMP=gnu USE_MPI=TRUE | ||
- name: Run | ||
working-directory: ./Exec/Efield/FlameSheetIons | ||
run: | | ||
mpirun -n 2 ./PeleLMeX2d.gnu.MPI.EF.ex input.2d-regt amr.max_step=2 amr.plot_int=-1 amr.check_int=-1 | ||
# Build and Run the TurbInflow RegTest in DEBUG with GNU9.3 and MPI support | ||
TI3D: | ||
name: [email protected] MPI Run [TI3DDBG] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.