summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 9abc3df873cfe772c7e76c0baf5db94db881169b (plain)
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: c

dist: trusty

before_install: ./travis-install.sh

script: ./travis-build.sh

sudo: required

git:
  depth: 2147483647

env:
  global:
    - SLEEP_A_BIT="sleep 0.2"
    - VERBOSE="1"

matrix:
  include:
    - compiler: gcc
      env:
        - TARGET=x86_64
    - compiler: gcc
      env:
        - TARGET=x32
    - compiler: gcc
      env:
        - TARGET=x86
    - compiler: clang-3.8
      env:
        - TARGET=x86_64
    - compiler: musl-gcc
      env:
        - TARGET=x86_64
    - compiler: clang-3.8
      env:
        - TARGET=x86
    - compiler: musl-gcc
      env:
        - TARGET=x86
    - compiler: gcc-7
      env:
        - TARGET=x86_64
    - compiler: gcc-7
      env:
        - TARGET=x32
    - compiler: gcc-7
      env:
        - TARGET=x86
    - compiler: gcc
      env:
        - TARGET=x86_64
        - CHECK=coverage
        - KHEADERS=torvalds/linux