-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.travis.yml
57 lines (47 loc) · 1.03 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
51
52
53
54
55
language: cpp
script:
- export PATH="/usr/local/opt/qt/bin:$PATH"
- mkdir -p build
- cd build
- qmake ../xastir-qt.pro || qmake-qt4 ../xastir-qt.pro || qmake-qt5 ../xastir-qt.pro
- make
- sudo make install
matrix:
exclude:
- compiler: gcc
include:
# - os: linux
# name: "Ubuntu 14.04 with Qt4"
# addons:
# apt:
# packages:
# - qt4-dev-tools
# - os: linux
# dist: xenial
# name: "Ubuntu 16.04 with Qt5"
# addons:
# apt:
# packages:
# - qtbase5-dev
- os: linux
dist: xenial
name: "Ubuntu 16.04 with Qt5 and g++-8"
addons:
apt:
sources:
- llvm-toolchain-xenial-7
- ubuntu-toolchain-r-test
packages:
- qtbase5-dev
- g++-8
install:
- export CXX="g++-8"
- echo ${CXX}
- ${CXX} --version
- os: osx
name: "OSX with Qt5"
compiler: clang
addons:
homebrew:
packages:
- qt5