[WIP] allow for an alternate EOS table for the helmholtz EOS #2264
Workflow file for this run
This file contains hidden or 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
| name: nse_net | |
| on: [pull_request] | |
| jobs: | |
| nse_net: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Get AMReX | |
| run: | | |
| mkdir external | |
| cd external | |
| git clone https://github.com/AMReX-Codes/amrex.git | |
| cd amrex | |
| git checkout development | |
| echo 'AMREX_HOME=$(GITHUB_WORKSPACE)/external/amrex' >> $GITHUB_ENV | |
| echo $AMREX_HOME | |
| if [[ -n "${AMREX_HOME}" ]]; then exit 1; fi | |
| 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: Compile, nse_net_cell (NSE_NET, ase) | |
| run: | | |
| cd unit_test/nse_net_cell | |
| make realclean | |
| make -j 4 | |
| - name: Run nse_net_cell (NSE_NET, ase) | |
| run: | | |
| cd unit_test/nse_net_cell | |
| ./main3d.gnu.ex inputs_ase amrex.fpe_trap_{invalid,zero,overflow}=1 > test.out | |
| - name: Print backtrace | |
| if: ${{ failure() && hashFiles('unit_test/nse_net_cell/Backtrace.0') != '' }} | |
| run: cat unit_test/nse_net_cell/Backtrace.0 | |
| - name: Compare to stored output (NSE_NET, ase) | |
| run: | | |
| cd unit_test/nse_net_cell | |
| diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/nse_net_unit_test.out | |
| - name: Compile, nse_net_cell/make_table (NSE_NET, ase, make_table) | |
| run: | | |
| cd unit_test/nse_net_cell/make_table | |
| make realclean | |
| make -j 4 | |
| - name: Run, nse_net_cell/make_table (NSE_NET, ase, make_table) | |
| run: | | |
| cd unit_test/nse_net_cell/make_table | |
| ./main3d.gnu.ex amrex.fpe_trap_{invalid,zero,overflow}=1 > test.out | |
| - name: Print backtrace | |
| if: ${{ failure() && hashFiles('unit_test/nse_net_cell/make_table/Backtrace.0') != '' }} | |
| run: cat unit_test/nse_net_cell/make_table/Backtrace.0 | |
| - name: Compare to stored output (NSE_NET, ase, make_table) | |
| run: | | |
| cd unit_test/nse_net_cell/make_table | |
| diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/nse_net_make_table_unit_test.out | |
| - name: Compile, nse_compatibility (NSE_NET, ase-test, integration) | |
| run: | | |
| cd nse_solver/nse_compatibility | |
| make realclean | |
| make NETWORK_DIR=he-burn/ase-test -j 4 | |
| - name: Run nse_compatibility (NSE_NET, ase-test, integration) | |
| run: | | |
| cd nse_solver/nse_compatibility | |
| ./main3d.gnu.ex inputs_nse_compatibility amrex.fpe_trap_{invalid,zero,overflow}=1 > test.out | |
| - name: Print backtrace | |
| if: ${{ failure() && hashFiles('nse_solver/nse_compatibility/Backtrace.0') != '' }} | |
| run: cat nse_solver/nse_compatibility/Backtrace.0 | |
| - name: Compare to stored output (NSE_NET, ase-test, integration) | |
| run: | | |
| cd nse_solver/nse_compatibility | |
| diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/nse_net_integration_unit_test.out |