]> git.ipfire.org Git - thirdparty/util-linux.git/blob - .travis.yml
rfkill: merge rfkill.8 project to util-linux
[thirdparty/util-linux.git] / .travis.yml
1 language: c
2
3 sudo: required
4 dist: trusty
5
6 git:
7 depth: 1500
8
9 compiler:
10 - gcc
11 - clang
12
13 env:
14 - MAKE_CHECK="nonroot"
15 - MAKE_CHECK="root"
16 - MAKE_CHECK="dist"
17
18 matrix:
19 include:
20 # test old Ubuntu 12.04 and OSX for compatibility
21 - dist: precise
22 compiler: gcc
23 env: PRECISE="yes" MAKE_CHECK="root"
24 - os: osx
25 osx_image: xcode7.3
26 compiler: clang
27 env: MAKE_CHECK="nonroot"
28
29 branches:
30 only:
31 - master
32 - /^stable.*/
33 - /^travis.*/
34
35 before_install:
36 # print some host info
37 - env | grep -v "encrypted" | LC_ALL=C sort
38 # workaround travis-ci issue #5301
39 - unset PYTHON_CFLAGS
40
41 install:
42 - source ./.travis-functions.sh
43 - travis_install_script
44
45 before_script:
46 - travis_before_script
47
48 script:
49 - travis_script
50
51 after_script:
52 - travis_after_script
53