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

add CI for test_partition_functions #1673

Merged
merged 2 commits into from
Nov 22, 2024
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
44 changes: 44 additions & 0 deletions .github/workflows/test_partition_functions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: test_partition_functions

on: [pull_request]
jobs:
test_partition_functions:
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: Compile
run: |
cd unit_test/test_part_func
make clean
make -j 4

- name: Run test_part_func
run: |
cd unit_test/test_part_func
./main3d.gnu.ex > test.out

- name: Compare to stored output
run: |
cd unit_test/test_part_func
diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/part_func.out

9 changes: 9 additions & 0 deletions unit_test/test_part_func/ci-benchmarks/part_func.out
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Initializing AMReX (24.10-20-gb9d549bcf4a6)...
AMReX (24.10-20-gb9d549bcf4a6) initialized
starting the single zone burn...
reading in network electron-capture / beta-decay tables...
temperature = 5000000000
Ni56: 1.010868 2.337172328e-11
Fe52: 1.743116 3.226066771e-10
spins: 2 1 1 8 1
AMReX (24.10-20-gb9d549bcf4a6) finalized
Loading