Skip to content
Snippets Groups Projects
Commit fd30cf43 authored by tkittel's avatar tkittel
Browse files

Another attempt at fixing travis osx builds

parent c3d63016
No related branches found
No related tags found
No related merge requests found
......@@ -25,8 +25,15 @@ compiler:
- gcc
- clang
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then rvm get stable --auto-dotfiles; fi
before_script:
- set -e
- cmake --version
- python --version
- python -c 'import numpy' 2>/dev/null || pip install numpy
- python -c 'import numpy; print numpy.__version__'
- mkdir build installdir rundir
- cd build
- cmake .. -DBUILD_FAT=ON -DCMAKE_BUILD_TYPE=${BUILD} -DCMAKE_INSTALL_PREFIX=../installdir/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment