-
Notifications
You must be signed in to change notification settings - Fork 16
/
.travis.yml
66 lines (57 loc) · 1.13 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
56
57
58
59
60
61
62
63
64
65
66
language: cpp
sudo: required
os:
- linux
- osx
compiler:
- gcc
- clang
env:
- CONFOPTS=""
- CONFOPTS="--disable-fast-printing"
matrix:
include:
## make distcheck
- os: linux
compiler: gcc
env: DISTCHECK="yes"
CONFOPTS=""
## Ubuntu 14.04 Trusty (beta), sudo required!
- os: linux
dist: trusty
sudo: required
compiler: gcc
env: TRUSTY="yes"
CONFOPTS=""
## MinGW / wine
- os: linux
sudo: required
compiler: i586-mingw32msvc-gcc
env: BUILD_MINGW="yes"
CONFOPTS="--host=i586-mingw32msvc"
- os: linux
sudo: required
compiler: i586-mingw32msvc-gcc
env: BUILD_MINGW="yes"
CONFOPTS="--host=i586-mingw32msvc --disable-fast-printing"
addons:
apt:
packages:
- gengetopt
- help2man
install:
- env | grep -v "encrypted" | LC_ALL=C sort
- lscpu || sysctl hw
- source ./.travis-functions.sh
- travis_have_sudo
- travis_install_script
before_script:
- travis_before_script
script:
- travis_script
branches:
only:
- master
- next
- /^travis.*/
- /^tmp.*/