Improved overlap checker #27
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: OpenMC-Testing | |
on: | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Apt dependencies | |
shell: bash | |
run: | | |
sudo apt -y update | |
sudo apt install -y libgcc-9-dev \ | |
libstdc++-9-dev \ | |
libembree-dev \ | |
libnetcdf-dev \ | |
libhdf5-dev \ | |
libeigen3-dev \ | |
cmake | |
- name: Environment Variables | |
run: | | |
echo "OPENMC_CROSS_SECTIONS=$HOME/nndc_hdf5/cross_sections.xml" >> $GITHUB_ENV | |
echo "OPENMC_ENDF_DATA=$HOME/endf-b-vii.1" >> $GITHUB_ENV | |
echo "PATH=$HOME/opt/bin:$PATH" >> $GITHUB_ENV | |
- name: Clone MOAB | |
shell: bash | |
run: | | |
cd ~ | |
git clone https://bitbucket.org/fathomteam/moab.git | |
cd moab | |
git checkout 5.3.1 | |
- name: Clone libMesh | |
shell: bash | |
run: | | |
cd ~ | |
git clone https://github.com/libMesh/libmesh.git | |
cd libmesh | |
git checkout v1.7.0 | |
- name: Cache Variables | |
run: | | |
echo "MOAB_SHA"=$(cd ~/moab && git rev-parse HEAD) >> $GITHUB_ENV | |
echo "LIBMESH_SHA"=$(cd ~/libmesh && git rev-parse HEAD) >> $GITHUB_ENV | |
- name: MOAB Cache | |
id: moab-cache | |
uses: actions/cache@v3 | |
env: | |
cache-name: moab-cache | |
with: | |
path: ~/MOAB | |
key: moab-${{ runner.os }}-${{ env.cache-name }}-${{ env.MOAB_SHA }} | |
- name: libMesh Cache | |
id: libmesh-cache | |
uses: actions/cache@v3 | |
env: | |
cache-name: libmesh-cache | |
with: | |
path: ~/LIBMESH | |
key: libmesh-${{ runner.os }}-${{ env.cache-name }}-${{ env.LIBMESH_SHA }} | |
- if: ${{ steps.moab-cache.outputs.cache-hit != 'true' }} | |
name: Build MOAB | |
shell: bash | |
run: | | |
cd ~/moab | |
mkdir build | |
cd build | |
cmake -DCMAKE_INSTALL_PREFIX=$HOME/MOAB -DENABLE_HDF5=ON -DENABLE_BLASLAPACK=OFF -DCMAKE_BUILD_TYPE=Release .. | |
make -j4 | |
make install | |
- if: ${{ steps.libmesh-cache.outputs.cache-hit != 'true' }} | |
name: Build libMesh | |
shell: bash | |
run: | | |
cd ~/libmesh | |
git submodule update --init --recursive | |
mkdir build | |
cd build | |
../configure --prefix=$HOME/LIBMESH --enable-exodus --disable-netcdf4 --disable-eigen --disable-lapack --disable-mpi --disable-metaphysicl | |
make -j4 | |
make install | |
- name: Build XDG | |
shell: bash | |
run: | | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_INSTALL_PREFIX=$HOME/opt -DCMAKE_PREFIX_PATH="$HOME/MOAB;$HOME/LIBMESH" -DXDG_ENABLE_MOAB=ON -DXDG_ENABLE_LIBMESH=ON | |
make -j4 all install | |
- name: Build OpenMC | |
shell: bash | |
run: | | |
cd ~ | |
git clone https://github.com/pshriwise/openmc --branch xdg | |
cd openmc | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_PREFIX_PATH=$HOME/opt -DOPENMC_USE_XDG=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=$HOME/opt | |
make -j4 install | |
cd .. | |
./tools/ci/download-xs.sh | |
pip install --user .[test] | |
OMP_NUM_THREADS=2 pytest tests/regression_tests/dagmc/legacy tests/regression_tests/dagmc/universes | |
- name: Setup tmate session | |
if: ${{ failure() }} | |
uses: mxschmitt/action-tmate@v3 |