Skip to content

Commit ed58a30

Browse files
Allen WinterAllen Winter
authored andcommitted
.travis.yml - initial commit to add Travis-CI support
Change-Id: I5492d1ca7eea1fa89baa42ef3048889b526fc0c6 Reviewed-on: https://codereview.kdab.com/c/kdab/KDToolBox/+/99606 Reviewed-by: Allen Winter <[email protected]>
1 parent 30801e4 commit ed58a30

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

.travis.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
env:
2+
global:
3+
- secure: "NlWO/NTPlOU6cowOMuPOvjAprXVwIjmpHHf9CoMR71E2c/eBFFKIHj10kXuyFwz2KihHAIExmo9OlGtGniNWobvIrVrabO3dsOSb6UGbPAQkzQiyQLKsDNQAZx3nMuWEKBtMsVRee6rd7/2uGTY4WB5Ot3VhrUYcN1FoRgQQ9gk="
4+
5+
branches:
6+
only:
7+
- master
8+
9+
matrix:
10+
include:
11+
- os: linux
12+
dist: bionic
13+
- os: osx
14+
osx_image: xcode11.5
15+
env:
16+
- QT_SELECT=qt5
17+
18+
language: cpp
19+
compiler:
20+
- gcc
21+
- clang
22+
23+
script:
24+
- mkdir build
25+
- cd build
26+
- qmake ..
27+
- make
28+
- make check
29+
30+
notifications:
31+
email:
32+
recipients:
33+
34+
on_success: never
35+
on_failure: always
36+
37+
dist: bionic
38+
addons:
39+
apt:
40+
update: true
41+
packages:
42+
- qt5-default
43+
- qtbase5-dev
44+
- qtbase5-dev-tools
45+
- qtbase5-private-dev
46+
- qttools5-dev
47+
- qttools5-dev-tools
48+
homebrew:
49+
update: true
50+
packages:
51+
- qt5

0 commit comments

Comments
 (0)