Remove unused param from ISM metal chemistry network #1157
Workflow file for this run
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
name: test_neutrinos | |
on: [pull_request] | |
jobs: | |
test_neutrinos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
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: Build the fextrema tool | |
run: | | |
cd external/amrex/Tools/Plotfile | |
make programs=fextrema -j 2 | |
- name: Compile | |
run: | | |
cd unit_test/test_neutrino_cooling | |
make realclean | |
make -j 4 | |
- name: Run test_neutrino_cooling | |
run: | | |
cd unit_test/test_neutrino_cooling | |
./main3d.gnu.ex inputs amrex.fpe_trap_{invalid,zero,overflow}=1 | |
../../external/amrex/Tools/Plotfile/fextrema.gnu.ex test_sneut5 > test.out | |
- name: Print backtrace | |
if: ${{ failure() && hashFiles('unit_test/test_neutrino_cooling/Backtrace.0') != '' }} | |
run: cat unit_test/test_neutrino_cooling/Backtrace.0 | |
- name: Compare to stored output | |
run: | | |
cd unit_test/test_neutrino_cooling | |
diff test.out ci-benchmarks/test_sneut5.out |