aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@ubuntu.com>2018-09-19 18:23:50 -0400
committerLibravatarUnit 193 <unit193@ubuntu.com>2018-09-19 18:23:50 -0400
commit68a36b3b67ec82cdd3f77e88e40d1043cbab5000 (patch)
tree6a23b540cdd5b17f4df92a850e2bc940d96d1cac /.travis.yml
parent4a8bfd06e73d7f051f0b39e19e57616c7bbb8ad1 (diff)
New upstream version 2.1.2+dfsgupstream/2.1.2+dfsg
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml40
1 files changed, 32 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 82f36c5..43bcd89 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,10 +1,34 @@
language: cpp
-before_install:
-- sudo apt-get update -qq
-- sudo apt-get install -qq libxtst-dev
-- sudo apt-get install -qq qtdeclarative5-dev
-- sudo apt-get install -qq libavahi-compat-libdnssd-dev
-script: sh -x ./clean_build.sh
-# skip install phase since we have a customized install package
-# creation tool for each supported platform
+
+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