summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 43bcd894e628e2cadbac2b0b9f49524a4e583643 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: cpp

matrix:
  include:
    - os: linux
      sudo: false
      dist: trusty
      addons:
        apt:
          packages:
            - libxtst-dev
            - qtdeclarative5-dev
            - libavahi-compat-libdnssd-dev
      script: sh -x ./clean_build.sh

    - os: osx
      osx_image: xcode9
      script:
        - export COLUMNS=80
        - curl -LO https://raw.githubusercontent.com/GiovanniBussi/macports-ci/master/macports-ci
        - chmod +x ./macports-ci
        - ./macports-ci install
        - PATH="$PATH:/opt/local/bin"
        - sudo port -N install qt5-qtbase openssl
        - sh -x ./clean_build.sh

    - os: osx
      osx_image: xcode9
      script:
        - brew update
        - brew install qt openssl
        - sh -x ./clean_build.sh

install: true