move the model_file paramter to the top-level _parameters #53
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: massive_star | |
on: [pull_request] | |
jobs: | |
massive_star: | |
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: Get Microphysics | |
run: | | |
cd external | |
git clone https://github.com/AMReX-Astro/Microphysics.git | |
cd Microphysics | |
git checkout development | |
echo 'MICROPHYSICS_HOME=$(GITHUB_WORKSPACE)/external/Microphysics' >> $GITHUB_ENV | |
echo $MICROPHYSICS_HOME | |
if [[ -n "${MICROPHYSICS_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 | |
run: | | |
cd massive_star | |
make -j2 | |
- name: Run with regular grid | |
run: | | |
cd massive_star | |
./initialmodel1d.gnu.ex inputs problem.nx=16384 | |
- name: Compare to stored output | |
run: | | |
cd massive_star | |
diff 15m_500_sec.aprox19.hse.dx20.00km ci-benchmarks/15m_500_sec.aprox19.hse.dx20.00km | |