blob: d937f9dcf239c8701eaca97000b91b530dc84314 [file] [log] [blame]
Petr Vorel1ed52332017-01-11 13:42:29 +01001language: c
2
Petr Vorelb6684332017-01-13 10:07:05 +01003matrix:
4 include:
5 - os: linux
6 compiler: gcc-4.6
7 addons:
8 apt:
9 sources: ['ubuntu-toolchain-r-test']
10 packages: ['gcc-4.6']
11
12 - os: linux
13 compiler: gcc-4.7
14 addons:
15 apt:
16 sources: ['ubuntu-toolchain-r-test']
17 packages: ['gcc-4.7']
18
19 - os: linux
20 compiler: gcc-4.8
21 addons:
22 apt:
23 sources: ['ubuntu-toolchain-r-test']
24 packages: ['gcc-4.8']
25
26 - os: linux
27 compiler: gcc-4.9
28 addons:
29 apt:
30 sources: ['ubuntu-toolchain-r-test']
31 packages: ['gcc-4.9']
32
33 - os: linux
34 compiler: gcc-5
35 addons:
36 apt:
37 sources: ['ubuntu-toolchain-r-test']
38 packages: ['gcc-5']
39
40 - os: linux
41 compiler: gcc-6
42 addons:
43 apt:
44 sources: ['ubuntu-toolchain-r-test']
45 packages: ['gcc-6']
46
47 - os: linux
48 compiler: clang-3.5
49 addons:
50 apt:
51 sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.5']
52 packages: ['clang-3.5']
53
54 - os: linux
55 compiler: clang-3.8
56 addons:
57 apt:
58 sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.8']
59 packages: ['clang-3.8']
60
61 - os: linux
62 compiler: clang-3.9
63 addons:
64 apt:
65 sources:
66 - sourceline: "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.9 main"
67 key_url: "http://apt.llvm.org/llvm-snapshot.gpg.key"
68 - 'ubuntu-toolchain-r-test'
69 packages: ['clang-3.9']
70
Petr Vorel1ed52332017-01-11 13:42:29 +010071notifications:
72 email:
Petr Vorelbf549a02017-02-02 16:43:15 +010073 secure: "b/xcA/K5OyQvPPnd0PRahTH5LJu8lgz8goGHvhXpHo+ZPsPgTDXNFo5cX9fSOkMuFKeoW8iGl0wOgK2+ptc8mbYDw277K4RFIHRHeV/KIoE1EzjQnEFiL8J0oHCAvDj12o0AXeriTyY9gICXKbR31Br6Zh5eKViDJe2OAGeHeDU="
Petr Vorel1ed52332017-01-11 13:42:29 +010074
Petr Vorelb6684332017-01-13 10:07:05 +010075script: make autotools && ./configure --prefix $HOME/ltp --with-open-posix-testsuite --with-realtime-testsuite && make -j$(getconf _NPROCESSORS_ONLN) && make -j$(getconf _NPROCESSORS_ONLN) install