Files @ d7ffa366e13b
Branch filter:

Location: libtransport.git/.travis.yml

Thomas Riccardi
libcommuni IRC backend: support multi-lines messages

... by splitting them into one PRIVMSG command per line.
language: cpp
sudo: required
services:
  - docker
matrix:
  include:
    - os: linux
      dist: trusty
      sudo: required
    - os: osx
      osx_image: xcode9.4
before_script:
  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
      brew update;
      brew install cppunit protobuf log4cxx popt jsoncpp 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