blob: ee45ede6843727da64401f41e2f1186f59bdd55e (
plain) (
blame)
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
|
language: cpp
os:
- linux
# - osx
sudo: require
dist: trusty
#osx_image: xcode10.2
before_install:
- export STAGE=before_install
- ./scripts/travis.sh
script:
- export STAGE=script
- ./scripts/travis.sh
after_success:
- export STAGE=after_success
- ./scripts/travis.sh
- wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh
- chmod +x send.sh
- ./send.sh success $WEBHOOK_URL
after_failure:
- wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh
- chmod +x send.sh
- ./send.sh failure $WEBHOOK_URL
compiler:
- gcc
dist: xenial
#addons:
# homebrew:
# taps:
# - kde-mac/kde
# packages:
# - qt5
# - gstreamer
# - gst-plugins-good
# - gst-plugins-bad
# - gst-plugins-ugly
# - cmake
# - libmusicbrainz
# - taglib
# - kf5-extra-cmake-modules
# update: true
branches:
except:
- # Do not build tags that we create when we upload to GitHub Releases
- /^(?i:continuous)/
|