-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
78 changed files
with
7,423 additions
and
6,787 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,6 @@ suffix.h | |
*.pyc | ||
rs.cred | ||
*.h5 | ||
*.dat | ||
tests/run_inputs.py | ||
cyclus.sqlite |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
set -x # print cmds | ||
set -e # exit as soon as an error occurs | ||
|
||
# log | ||
msg=`git log --pretty=oneline -1` | ||
echo "Building commit: $msg" | ||
|
||
# setup conda recipe to use develop cyclus | ||
sed -i "s/- cyclus/- cyclus 0.0/g" conda-recipe/meta.yaml | ||
|
||
# build | ||
conda build --no-test conda-recipe | ||
|
||
# install | ||
conda install --use-local cycamore=0.0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
language: python | ||
python: | ||
# We don't actually use the Travis Python, but this keeps it organized. | ||
- "2.7" | ||
- "3.4" | ||
before_install: | ||
- sudo apt-get update -qq | ||
install: | ||
# You may want to periodically update this, although the conda update | ||
# conda line below will keep everything up-to-date. We do this | ||
# conditionally because it saves us some downloading if the version is | ||
# the same. | ||
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then | ||
wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh; | ||
else | ||
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; | ||
fi | ||
- bash miniconda.sh -b -p $HOME/miniconda | ||
- export PATH="$HOME/miniconda/bin:$PATH" | ||
- hash -r | ||
- conda config --set always_yes yes --set changeps1 no | ||
- conda config --add channels pyne | ||
- conda config --add channels cyclus | ||
- conda update -q conda | ||
- conda install conda-build jinja2 setuptools binstar patchelf nose | ||
# Useful for debugging any issues with conda | ||
- conda info -a | ||
|
||
# install cyclus | ||
- git clone https://github.com/cyclus/cyclus ../cyclus | ||
- cd ../cyclus | ||
- ./.travis-install.sh | ||
- cd ../cycamore | ||
|
||
# install cycamore | ||
- ./.travis-install.sh | ||
|
||
script: | ||
- export PATH="$HOME/miniconda/bin:$PATH" | ||
- export LD_LIBRARY_PATH="$HOME/miniconda/lib:$LD_LIBRARY_PATH" | ||
- cycamore_unit_tests | ||
- conda install numpy pytables | ||
- nosetests -w tests | ||
|
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
Oops, something went wrong.