Merge pull request #99 from fusion-energy/adding-scaling-factor #176
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: CI with model benchmark zoo | |
on: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- 'docs/**' | |
- '.gitignore' | |
- '*.md' | |
- 'CITATION.cff' | |
- 'LICENSE.txt' | |
- 'readthedocs.yml' | |
push: | |
branches: | |
- main | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: install dependencies and run CSG / DAMGC benchmarks | |
env: | |
OPENMC_CROSS_SECTIONS: /home/runner/work/cad_to_dagmc/cad_to_dagmc/cross_sections.xml | |
shell: bash | |
run: | | |
wget -O Miniforge3.sh "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh" | |
bash Miniforge3.sh -b -p "${HOME}/conda" | |
source "${HOME}/conda/etc/profile.d/conda.sh" | |
source "${HOME}/conda/etc/profile.d/mamba.sh" | |
sudo apt-get --allow-releaseinfo-change update | |
sudo apt-get update -y | |
sudo apt-get upgrade -y | |
sudo apt-get install -y libgl1 libglx-mesa0 libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev libosmesa6 libosmesa6-dev libgles2-mesa-dev libarchive-dev libpangocairo-1.0-0 | |
mamba activate | |
mamba install -y -c conda-forge "openmc=0.15.0=dagmc*nompi*" trimesh networkx cadquery gmsh python-gmsh | |
python -m ensurepip --upgrade | |
python -m pip install . --no-deps | |
python -m pip install openmc_data_downloader | |
openmc_data_downloader -l ENDFB-7.1-NNDC -i Fe56 Be9 | |
git clone --single-branch -b main --depth 1 https://github.com/fusion-energy/model_benchmark_zoo.git | |
cd model_benchmark_zoo | |
python -m pip install .[tests] | |
conda env export > environment.yml | |
cat environment.yml | |
pytest tests/test_cad_to_dagmc -v |