Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix CI diffs due to AMReX change #1361

Merged
merged 1 commit into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/burn_cell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Compare to stored output (VODE, subch_approx)
run: |
cd unit_test/burn_cell
diff -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/subch_approx_unit_test.out
diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/subch_approx_unit_test.out

- name: Compile, burn_cell (VODE, ECSN)
run: |
Expand All @@ -56,7 +56,7 @@ jobs:
- name: Compare to stored output (VODE, ECSN)
run: |
cd unit_test/burn_cell
diff -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/ecsn_unit_test.out
diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/ecsn_unit_test.out

- name: Compile, burn_cell (VODE, ignition_chamulak)
run: |
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Compare to stored output (VODE, ignition_chamulak)
run: |
cd unit_test/burn_cell
diff -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/chamulak_VODE_unit_test.out
diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/chamulak_VODE_unit_test.out

- name: Compile, burn_cell (ForwardEuler, triple_alpha_plus_cago)
run: |
Expand All @@ -88,7 +88,7 @@ jobs:
- name: Compare to stored output (ForwardEuler, triple_alpha_plus_cago)
run: |
cd unit_test/burn_cell
diff -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/triple_alpha_plus_cago_FE_unit_test.out
diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/triple_alpha_plus_cago_FE_unit_test.out

- name: Compile, burn_cell (BackwardEuler, subch_approx)
run: |
Expand All @@ -104,7 +104,7 @@ jobs:
- name: Compare to stored output (BackwardEuler, subch_approx)
run: |
cd unit_test/burn_cell
diff -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/subch_approx_BE_unit_test.out
diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/subch_approx_BE_unit_test.out

- name: Compile, burn_cell (QSS, aprox13)
run: |
Expand All @@ -120,7 +120,7 @@ jobs:
- name: Compare to stored output (QSS, aprox13)
run: |
cd unit_test/burn_cell
diff -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/aprox13_QSS_unit_test.out
diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/aprox13_QSS_unit_test.out

- name: Compile, burn_cell (RKC, aprox13)
run: |
Expand All @@ -136,4 +136,4 @@ jobs:
- name: Compare to stored output (RKC, aprox13)
run: |
cd unit_test/burn_cell
diff -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/aprox13_RKC_unit_test.out
diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/aprox13_RKC_unit_test.out
4 changes: 2 additions & 2 deletions .github/workflows/eos_cell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Compare to stored output (helmholtz)
run: |
cd unit_test/eos_cell
diff -I "^AMReX" test.out ci-benchmarks/eos_helmholtz.out
diff -I "^Initializing AMReX" -I "^AMReX" test.out ci-benchmarks/eos_helmholtz.out

- name: Compile eos_cell (gamma_law)
run: |
Expand All @@ -56,6 +56,6 @@ jobs:
- name: Compare to stored output (gamma_law)
run: |
cd unit_test/eos_cell
diff -I "^AMReX" test.out ci-benchmarks/eos_gamma_law.out
diff -I "^Initializing AMReX" -I "^AMReX" test.out ci-benchmarks/eos_gamma_law.out


2 changes: 1 addition & 1 deletion .github/workflows/nse_net.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ jobs:
- name: Compare to stored output (NSE_NET, ase)
run: |
cd unit_test/test_ase
diff -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/ase_nse_net_unit_test.out
diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/ase_nse_net_unit_test.out


2 changes: 1 addition & 1 deletion .github/workflows/nse_table.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ jobs:
- name: Compare to stored output (NSE, aprox19)
run: |
cd unit_test/burn_cell
diff -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/aprox19_nse_unit_test.out
diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/aprox19_nse_unit_test.out


2 changes: 1 addition & 1 deletion .github/workflows/nse_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ jobs:
- name: Compare to stored output (aprox21)
run: |
cd unit_test/test_nse
diff -I "^AMReX" -I "^reading in reaclib rates" -I "^0x" test.out ci-benchmarks/aprox21_ci.out
diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" -I "^0x" test.out ci-benchmarks/aprox21_ci.out

2 changes: 1 addition & 1 deletion .github/workflows/test_nse_interp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ jobs:
- name: Compare to stored output (NSE, aprox19)
run: |
cd unit_test/test_nse_interp
diff -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/aprox19.out
diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/aprox19.out