Skip to content

Commit

Permalink
WIP Compile Octave client-api in Travis/Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
oheim committed Nov 13, 2015
1 parent 0353c7a commit d5ddc0c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ before_install:
- if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-add-repository --yes ppa:ubuntu-sdk-team/ppa; fi
- if [ $TRAVIS_OS_NAME == linux ]; then sudo add-apt-repository --yes ppa:octave/stable; fi
- if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get update -qq > output; fi
- if [ $TRAVIS_OS_NAME == osx ]; then brew update && brew install qt5 && export PATH=/usr/local/opt/qt5/bin:$PATH; fi
- if [ $TRAVIS_OS_NAME == osx ]; then brew tap homebrew/science && brew update && brew install qt5 && export PATH=/usr/local/opt/qt5/bin:$PATH; fi

install:
- if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get install -qq qt5-default libqt5svg5-dev > output; fi
# 32 bit compatibility (since CMake is a 32 bit bin)
- if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get install -qq libc6:i386; fi
# Install Octave for test of client API
- if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get install -qq octave liboctave-dev; fi
- if [ $TRAVIS_OS_NAME == osx ]; then brew install octave --without-java; fi
# Install CMake bin (32 bit)
- if [ $TRAVIS_OS_NAME == linux ]; then wget --no-check-certificate -P /tmp http://www.cmake.org/files/v2.8/cmake-2.8.12.1-Linux-i386.sh; fi
- if [ $TRAVIS_OS_NAME == linux ]; then chmod +rx /tmp/cmake-2.8.12.1-Linux-i386.sh; fi
Expand Down

0 comments on commit d5ddc0c

Please sign in to comment.