-
Notifications
You must be signed in to change notification settings - Fork 443
Expand file tree
/
Copy path.travis.yml
More file actions
59 lines (51 loc) · 1.57 KB
/
Copy path.travis.yml
File metadata and controls
59 lines (51 loc) · 1.57 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
language: cpp
sudo: required
dist: trusty
addons:
apt:
packages:
- gdb
- apport
os: linux
env:
global:
- DISPLAY=:99
compiler:
- gcc
before_install:
# Enable core dumps
# https://github.com/springmeyer/travis-coredump/blob/master/.travis.yml
- ulimit -a -S
- ulimit -a -H
- ulimit -c unlimited -S
- ./tests/tests-environment.sh
script:
- ./tests/tests-ci.sh
after_success:
- wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
- bash ./upload.sh ./linuxdeployqt-*.AppImage
after_script:
- "xpra stop :99"
- find ./ -maxdepth 1 -name 'core*'
- for i in $(find ./ -maxdepth 1 -name 'core*' -print); do gdb $(pwd)/test core* -ex "thread apply all bt" -ex "set pagination 0" -batch; done;
branches:
except:
- # Do not build tags that we create when we upload to GitHub Releases
- /^(?i:continuous)$/
notifications:
irc:
channels:
- "chat.freenode.net#AppImage"
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: always # options: [always|never|change] default: always
template:
- "%{repository} build %{build_number}: %{result} %{build_url}"
use_notice: true
# skip_join: true
webhooks:
urls:
- https://webhooks.gitter.im/e/4bf20518805a55998cc2
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: always # options: [always|never|change] default: always