forked from huggle/huggle3-qt-lx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
50 lines (39 loc) · 1.21 KB
/
.travis.yml
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
# See http://docs.travis-ci.com/user/customizing-the-build/
# See ./travis/* for the actual scripts that get run
language: cpp
os:
- linux
- osx
sudo: required
env:
- THENEEDFORTHIS=FAIL
branches:
except:
- debian
- ubuntu
matrix:
include:
- os: osx
env: QTTYPE=5
- os: linux
env: QTTYPE=5
exclude:
- env: THENEEDFORTHIS=FAIL
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then bash -x ./travis/before_install.sh; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then bash -x ./travis/before_install_osx.sh; fi
install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then bash -x ./travis/install.sh; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then bash -x ./travis/install_osx.sh; fi
before_script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then bash -x ./travis/before_script.sh; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then bash -x ./travis/before_script_osx.sh; fi
script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then bash -x ./travis/script.sh; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then bash -x ./travis/script_osx.sh; fi
notifications:
irc:
channels:
- "irc.libera.chat#huggle"
on_failure: always
on_success: change