forked from util-linux/util-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
55 lines (43 loc) · 836 Bytes
/
.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
language: c
sudo: required
dist: trusty
git:
depth: 1500
compiler:
- gcc
- clang
env:
- MAKE_CHECK="nonroot"
- MAKE_CHECK="root"
- MAKE_CHECK="dist"
matrix:
include:
# test old Ubuntu 12.04 and OSX for compatibility
- dist: precise
compiler: gcc
env: PRECISE="yes" MAKE_CHECK="root"
- os: osx
osx_image: xcode7.3
compiler: clang
env: MAKE_CHECK="root"
branches:
only:
- master
- next
- /^stable.*/
- /^topic.*/
- /^travis.*/
before_install:
# print some host info
- env | grep -v "encrypted" | LC_ALL=C sort
# workaround travis-ci issue #5301
- unset PYTHON_CFLAGS
install:
- source ./.travis-functions.sh
- travis_install_script
before_script:
- travis_before_script
script:
- travis_script
after_script:
- travis_after_script