cantera/.travis.yml
Ray Speth c0d007ab1d Fix Travis build on OS X
Installing SCons using pip has stopped working. Installing using Homebrew works
fine.
2016-10-10 00:32:48 -04:00

24 lines
531 B
YAML

language: cpp
sudo: false
os:
- linux
- osx
addons:
apt:
packages:
- python-dev
- python-numpy
- gfortran
- libsundials-serial-dev
- liblapack-dev
- libblas-dev
before_script: |
pip install --user --install-option="--no-cython-compile" cython
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew update
brew install scons
fi
rm -f cantera.conf
script:
- scons build VERBOSE=y python_package=full python3_package=n blas_lapack_libs=lapack,blas optimize=n
- scons test