-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore .travis.yml; fix scons conda install and update rna_suites fu…
…llhelp
- Loading branch information
1 parent
00ca978
commit 2d2cead
Showing
3 changed files
with
65 additions
and
9 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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
language: cpp | ||
|
||
branches: | ||
only: | ||
- master | ||
|
||
matrix: | ||
include: | ||
- os: linux | ||
- os: osx | ||
osx_image: xcode10.1 | ||
|
||
|
||
#addons: | ||
# apt: | ||
# packages: | ||
# - scons | ||
# - libboost-all-dev | ||
# - libboost-regex-dev | ||
# - libatlas-base-dev | ||
# - libnetcdf-dev | ||
# - swig | ||
# - python3-dev | ||
# - python3-numpy | ||
# - python3-scipy | ||
# - libeigen3-dev | ||
# | ||
#before_install: | ||
# - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi | ||
## - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install boost; fi | ||
## - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install netcdf; fi | ||
# - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install swig; fi | ||
# - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install doxygen; fi | ||
# - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install graphviz; fi | ||
# - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install scons; fi | ||
# - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install eigen; fi | ||
|
||
install: | ||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then | ||
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; | ||
elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then | ||
wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh; | ||
fi | ||
- bash miniconda.sh -b -p $HOME/miniconda | ||
- source "$HOME/miniconda/etc/profile.d/conda.sh" | ||
- hash -r | ||
- conda config --set always_yes yes --set changeps1 no | ||
|
||
script: | ||
- ./conda_build.sh loos 1 |
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
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