mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-21 14:35:27 -04:00
21 lines
814 B
Bash
Executable file
21 lines
814 B
Bash
Executable file
#!/bin/bash
|
|
set -ex
|
|
|
|
# Allow tests that require GUI as described at:
|
|
# https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI
|
|
sh -e /etc/init.d/xvfb start
|
|
|
|
# Download NNDC HDF5 data
|
|
if [[ ! -e $HOME/nndc_hdf5/cross_sections.xml ]]; then
|
|
wget https://anl.box.com/shared/static/na85do11dfh0lb9utye2il5o6yaxx8hi.xz -O - | tar -C $HOME -xvJ
|
|
fi
|
|
|
|
# Download ENDF/B-VII.1 distribution
|
|
ENDF=$HOME/endf-b-vii.1/
|
|
if [[ ! -d $ENDF/neutrons || ! -d $ENDF/photoat || ! -d $ENDF/atomic_relax ]]; then
|
|
wget https://anl.box.com/shared/static/4kd2gxnf4gtk4w1c8eua5fsua22kvgjb.xz -O - | tar -C $HOME -xvJ
|
|
fi
|
|
|
|
# Download multipole library
|
|
git clone --branch=master git://github.com/smharper/windowed_multipole_library.git wmp_lib
|
|
tar -C $HOME -xzvf wmp_lib/multipole_lib.tar.gz
|