Fuel
Check-in [6b21c5057d]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Updated travis.yml
Timelines: family | ancestors | trunk
Files: files | file ages | folders
SHA1: 6b21c5057dad0036c043e4d57effd5cceb6d2a10
User & Date: Kostas 2018-06-10 03:53:32.078
Context
2018-06-10
03:53
Updated travis.yml Leaf check-in: 6b21c5057d user: Kostas tags: trunk
2018-06-09
17:18
Switched to QWebEngineView, so Fuel now requires at least Qt 5.4 check-in: a4e2ab6686 user: Kostas tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to .travis.yml.



1
2
3
4
5
6


7
8
9
10



before_install:
 - sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
 - sudo apt-get update -qq
 - sudo apt-get install qtbase5-dev qtdeclarative5-dev libqt5webkit5-dev libsqlite3-dev qt5-default qttools5-dev-tools

script:


 - intl/convert.sh
 - qmake -project
 - qmake fuel.pro
 - make
>
>
>

|
|
|


>
>




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
os:
- linux

before_install:
 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo add-apt-repository --yes ppa:beineri/opt-qt58-trusty; fi
 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update -qq; fi
 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install qt58-meta-minimal qt58webengine; fi

script:
 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then source /opt/qt58/bin/qt58-env.sh; fi
 - git log -n 1 --pretty=format:"%h %cD" >manifest.uuid
 - intl/convert.sh
 - qmake -project
 - qmake fuel.pro
 - make