1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00
falkonOfficial/.travis.yml

27 lines
980 B
YAML
Raw Normal View History

2016-01-16 19:51:39 +01:00
sudo: required
dist: trusty
2015-01-27 12:29:17 +01:00
language: cpp
cache: apt
env:
2016-04-24 10:25:01 +02:00
- QT=qt57
2017-01-25 11:29:00 +01:00
- QT=qt58
2015-01-27 12:29:17 +01:00
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- sudo apt-get -qq update
2016-03-16 21:30:21 +01:00
- sudo apt-get -qq install libssl-dev pkg-config libxcb-util0-dev
2017-01-22 13:33:58 +01:00
- if [[ "$QT" == "qt57" ]]; then sudo apt-add-repository -y ppa:beineri/opt-qt571-trusty; sudo apt-get update -qq; sudo apt-get install -qq qt57tools qt57script qt57webengine qt57webchannel qt57declarative qt57x11extras; fi
2017-01-25 11:29:00 +01:00
- if [[ "$QT" == "qt58" ]]; then sudo apt-add-repository -y ppa:beineri/opt-qt58-trusty; sudo apt-get update -qq; sudo apt-get install -qq qt58tools qt58script qt58webengine qt58webchannel qt58declarative qt58x11extras; fi
2015-01-27 12:29:17 +01:00
script:
- QMAKE="qmake"
2016-04-24 10:25:01 +02:00
- if [[ "$QT" == "qt57" ]]; then QMAKE="/opt/qt57/bin/qmake"; fi
2017-01-25 11:29:00 +01:00
- if [[ "$QT" == "qt58" ]]; then QMAKE="/opt/qt58/bin/qmake"; fi
2015-08-30 17:42:58 +02:00
- $QMAKE QMAKE_CXXFLAGS+="-Wextra -Werror"
2015-01-27 12:29:17 +01:00
- make || exit 1
- cd scripts && ./run_tests.sh $QMAKE