-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into nse_bailout
- Loading branch information
Showing
79 changed files
with
1,947 additions
and
852 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: uniform_cube | ||
|
||
on: [pull_request] | ||
jobs: | ||
uniform_cube: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Get submodules | ||
run: | | ||
git submodule update --init | ||
cd external/Microphysics | ||
git fetch; git checkout development | ||
cd ../amrex | ||
git fetch; git checkout development | ||
cd ../.. | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update -y -qq | ||
sudo apt-get -qq -y install curl g++>=9.3.0 | ||
- name: Compile uniform_cube | ||
run: | | ||
cd Exec/gravity_tests/uniform_cube | ||
make USE_MPI=FALSE -j 2 | ||
- name: Run uniform_cube | ||
run: | | ||
cd Exec/gravity_tests/uniform_cube | ||
./convergence.sh &> cube_convergence.out | ||
- name: Compare to the benchmark | ||
run: | | ||
cd Exec/gravity_tests/uniform_cube | ||
diff cube_convergence.out ci-benchmarks/cube_convergence.out |
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: uniform_sphere | ||
|
||
on: [pull_request] | ||
jobs: | ||
uniform_sphere: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Get submodules | ||
run: | | ||
git submodule update --init | ||
cd external/Microphysics | ||
git fetch; git checkout development | ||
cd ../amrex | ||
git fetch; git checkout development | ||
cd ../.. | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update -y -qq | ||
sudo apt-get -qq -y install curl g++>=9.3.0 | ||
- name: Compile uniform_sphere | ||
run: | | ||
cd Exec/gravity_tests/uniform_sphere | ||
make USE_MPI=FALSE -j 2 | ||
- name: Run uniform_sphere | ||
run: | | ||
cd Exec/gravity_tests/uniform_sphere | ||
./convergence.sh &> sphere_convergence.out | ||
- name: Compare to the benchmark | ||
run: | | ||
cd Exec/gravity_tests/uniform_sphere | ||
diff sphere_convergence.out ci-benchmarks/sphere_convergence.out |
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: wdmerger_collision | ||
|
||
on: [pull_request] | ||
jobs: | ||
wdmerger_collision-2d: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Get submodules | ||
run: | | ||
git submodule update --init | ||
cd external/Microphysics | ||
git fetch; git checkout development | ||
cd ../amrex | ||
git fetch; git checkout development | ||
cd ../.. | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update -y -qq | ||
sudo apt-get -qq -y install curl cmake jq clang g++>=9.3.0 | ||
- name: Build the fextrema tool | ||
run: | | ||
cd external/amrex/Tools/Plotfile | ||
make programs=fextrema -j4 | ||
- name: Compile wdmerger 2D | ||
run: | | ||
cd Exec/science/wdmerger | ||
make USE_MPI=FALSE DIM=2 -j4 | ||
- name: Run wdmerger 2D | ||
run: | | ||
cd Exec/science/wdmerger | ||
cp tests/wdmerger_collision/inputs_2d_collision.test . | ||
cp tests/wdmerger_collision/inputs_2d_collision . | ||
./Castro2d.gnu.ex inputs_2d_collision.test amr.plot_files_output=1 castro.output_at_completion=1 | ||
- name: Check the extrema | ||
run: | | ||
cd Exec/science/wdmerger | ||
../../../external/amrex/Tools/Plotfile/fextrema.gnu.ex plt00095 > fextrema.out | ||
diff fextrema.out ci-benchmarks/wdmerger_collision_2D.out |
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
Oops, something went wrong.