|
|
|
language: cpp
|
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
|
|
|
|
|
|
|
os: linux
|
|
|
|
|
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- DISPLAY=:99
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
- ./tests/tests-environment.sh
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
# fetch all tags
|
|
|
|
- git fetch --unshallow
|
|
|
|
|
|
|
|
script:
|
|
|
|
- ./tests/tests-ci.sh
|
|
|
|
|
|
|
|
after_success:
|
|
|
|
- wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
|
|
|
|
# quick fix for issue 223
|
|
|
|
- if [ "$TRAVIS_BRANCH" != "master" ]; then export TRAVIS_EVENT_TYPE=pull_request; fi
|
|
|
|
- bash ./upload.sh ./linuxdeployqt-*.AppImage*
|
|
|
|
|
|
|
|
after_script:
|
|
|
|
- "xpra stop :99"
|
|
|
|
|
|
|
|
branches:
|
|
|
|
except:
|
|
|
|
- # Do not build tags that we create when we upload to GitHub Releases
|
|
|
|
- /^(?i:continuous)$/
|