Skip to content

update true-SDC to be in sync with upcoming Castro cleaning #1147

update true-SDC to be in sync with upcoming Castro cleaning

update true-SDC to be in sync with upcoming Castro cleaning #1147

Workflow file for this run

name: nse_test
on: [pull_request]
jobs:
nse_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
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, test_nse (aprox21)
run: |
cd unit_test/test_nse
make realclean
make NETWORK_DIR=aprox21 -j 4
- name: Run test_nse (aprox21)
run: |
cd unit_test/test_nse
./main3d.gnu.ex inputs_aprox21 > test.out
- 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