Changeset - c63c87c023a0
[Not reviewed]
0 1 0
vitalyster - 7 years ago 2018-04-27 13:14:40
vitalyster@gmail.com
Travis: fix macOS build

do not use bottled libswiften to avoid boost linkage errors
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
.travis.yml
Show inline comments
 
@@ -3,24 +3,24 @@ sudo: required
 
services:
 
  - docker
 
matrix:
 
  include:
 
    - os: linux
 
      dist: trusty
 
      sudo: required
 
    - os: osx
 
before_script:
 
  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
 
      brew update;
 
      brew install cppunit protobuf log4cxx popt jsoncpp;
 
      travis_wait 30 brew install libswiften;
 
      travis_wait 30 brew install -s libswiften;
 
    fi
 
script:
 
  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
 
      cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTS=ON .;
 
      make;
 
      make test;
 
    else
 
      docker build . -f Dockerfile.stretch;
 
    fi
 
notifications:
 
  slack: spectrum2:CIlYHtxGMAaxs3qVHfwBzCuy
0 comments (0 inline, 0 general)