Dmitry V. Levin | 690235a | 2015-11-26 16:07:57 +0000 | [diff] [blame] | 1 | language: c |
2 | |||||
Dmitry V. Levin | 690235a | 2015-11-26 16:07:57 +0000 | [diff] [blame] | 3 | dist: trusty |
4 | |||||
5 | script: ./travis-ci.sh | ||||
6 | |||||
7 | sudo: required | ||||
8 | |||||
Dmitry V. Levin | b227293 | 2016-01-13 12:12:33 +0000 | [diff] [blame] | 9 | compiler: |
10 | - gcc | ||||
11 | - clang-3.6 | ||||
12 | - musl-gcc | ||||
13 | |||||
Dmitry V. Levin | 690235a | 2015-11-26 16:07:57 +0000 | [diff] [blame] | 14 | addons: |
15 | apt: | ||||
16 | packages: | ||||
17 | - gcc-multilib | ||||
Dmitry V. Levin | 5be488c | 2016-02-04 00:16:11 +0000 | [diff] [blame] | 18 | - lcov |
19 | |||||
20 | install: | ||||
21 | - pip install --user codecov | ||||
Dmitry V. Levin | 690235a | 2015-11-26 16:07:57 +0000 | [diff] [blame] | 22 | |
23 | env: | ||||
24 | global: | ||||
Dmitry V. Levin | 690235a | 2015-11-26 16:07:57 +0000 | [diff] [blame] | 25 | - SLEEP_A_BIT="sleep 0.1" |
26 | - VERBOSE="1" | ||||
Dmitry V. Levin | b227293 | 2016-01-13 12:12:33 +0000 | [diff] [blame] | 27 | matrix: |
28 | - TARGET=x86_64 | ||||
29 | - TARGET=x32 | ||||
30 | - TARGET=x86 | ||||
Dmitry V. Levin | c9d2501 | 2015-11-30 22:18:16 +0000 | [diff] [blame] | 31 | |
32 | matrix: | ||||
Dmitry V. Levin | b227293 | 2016-01-13 12:12:33 +0000 | [diff] [blame] | 33 | exclude: |
34 | - compiler: clang-3.6 | ||||
35 | env: TARGET=x32 | ||||
36 | - compiler: musl-gcc | ||||
37 | env: TARGET=x32 | ||||
38 | - compiler: musl-gcc | ||||
39 | env: TARGET=x86 |