]>
Commit | Line | Data |
---|---|---|
044722d5 AB |
1 | # The current Travis default is a container based 14.04 Trust on EC2 |
2 | # Additional builds with specific requirements for a full VM need to | |
3 | # be added as additional matrix: entries later on | |
692d162c | 4 | sudo: false |
044722d5 | 5 | dist: trusty |
fe863ab9 AB |
6 | language: c |
7 | python: | |
8e73a3c5 | 8 | - "2.6" |
fe863ab9 AB |
9 | compiler: |
10 | - gcc | |
4c33d42d | 11 | cache: ccache |
692d162c AB |
12 | addons: |
13 | apt: | |
14 | packages: | |
32265288 | 15 | # Build dependencies |
692d162c AB |
16 | - libaio-dev |
17 | - libattr1-dev | |
18 | - libbrlapi-dev | |
19 | - libcap-ng-dev | |
7524a39d | 20 | - libgcc-4.8-dev |
692d162c AB |
21 | - libgnutls-dev |
22 | - libgtk-3-dev | |
23 | - libiscsi-dev | |
24 | - liblttng-ust-dev | |
25 | - libncurses5-dev | |
d83414e1 | 26 | - libnfs-dev |
692d162c AB |
27 | - libnss3-dev |
28 | - libpixman-1-dev | |
29 | - libpng12-dev | |
30 | - librados-dev | |
31 | - libsdl1.2-dev | |
32 | - libseccomp-dev | |
33 | - libspice-protocol-dev | |
34 | - libspice-server-dev | |
35 | - libssh2-1-dev | |
36 | - liburcu-dev | |
37 | - libusb-1.0-0-dev | |
38 | - libvte-2.90-dev | |
39 | - sparse | |
40 | - uuid-dev | |
0708e647 | 41 | - gcovr |
692d162c | 42 | |
cb4c2536 PK |
43 | # The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu |
44 | # to prevent IRC notifications from forks. This was created using: | |
45 | # $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu" | |
39d16d29 AB |
46 | notifications: |
47 | irc: | |
48 | channels: | |
cb4c2536 | 49 | - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM=" |
39d16d29 AB |
50 | on_success: change |
51 | on_failure: always | |
fe863ab9 AB |
52 | env: |
53 | global: | |
ebf2ff65 PMD |
54 | - SRC_DIR="." |
55 | - BUILD_DIR="." | |
01337fbd | 56 | - TEST_CMD="make check" |
f4089dc8 | 57 | - MAKEFLAGS="-j3" |
fe863ab9 | 58 | matrix: |
ad20a090 AB |
59 | - CONFIG="--disable-system" |
60 | - CONFIG="--disable-user" | |
52dd1967 | 61 | - CONFIG="--enable-debug --enable-debug-tcg" |
0b438fa6 | 62 | - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-uuid --disable-libusb --disable-user" |
04200a16 AB |
63 | - CONFIG="--enable-modules --disable-linux-user" |
64 | - CONFIG="--with-coroutine=ucontext --disable-linux-user" | |
65 | - CONFIG="--with-coroutine=sigaltstack --disable-linux-user" | |
cb021cfe AB |
66 | git: |
67 | # we want to do this ourselves | |
68 | submodules: false | |
fe863ab9 | 69 | before_install: |
1d002037 AB |
70 | - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update ; fi |
71 | - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install libffi gettext glib pixman ; fi | |
ebdfb610 | 72 | - git submodule update --init --recursive capstone dtc ui/keycodemapdb |
eebf2940 | 73 | before_script: |
ebf2ff65 PMD |
74 | - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR} |
75 | - ${SRC_DIR}/configure ${CONFIG} || { cat config.log && exit 1; } | |
eebf2940 | 76 | script: |
f4089dc8 | 77 | - make ${MAKEFLAGS} && ${TEST_CMD} |
fe863ab9 | 78 | matrix: |
fe863ab9 | 79 | include: |
ebf2ff65 PMD |
80 | # Test out-of-tree builds |
81 | - env: CONFIG="--enable-debug --enable-debug-tcg" | |
82 | BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.." | |
ae6d692d AB |
83 | # Test with Clang for compile portability (Travis uses clang-5.0) |
84 | - env: CONFIG="--disable-system" | |
85 | compiler: clang | |
86 | - env: CONFIG="--disable-user" | |
d9a6b013 | 87 | compiler: clang |
6c933291 | 88 | # gprof/gcov are GCC features |
73d99c11 | 89 | - env: CONFIG="--enable-gprof --enable-gcov --disable-pie --target-list=aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu" |
0708e647 AB |
90 | after_success: |
91 | - ${SRC_DIR}/scripts/travis/coverage-summary.sh | |
fe863ab9 | 92 | compiler: gcc |
6c933291 AB |
93 | # We manually include builds which we disable "make check" for |
94 | - env: CONFIG="--enable-debug --enable-tcg-interpreter" | |
01337fbd | 95 | TEST_CMD="" |
fe863ab9 | 96 | compiler: gcc |
f8309de9 AB |
97 | # We don't need to exercise every backend with every front-end |
98 | - env: CONFIG="--enable-trace-backends=log,simple,syslog --disable-system" | |
01337fbd | 99 | TEST_CMD="" |
fe863ab9 | 100 | compiler: gcc |
f8309de9 | 101 | - env: CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu" |
01337fbd | 102 | TEST_CMD="" |
86c3b20a | 103 | compiler: gcc |
f8309de9 | 104 | - env: CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu" |
15552dbb AB |
105 | TEST_CMD="" |
106 | compiler: gcc | |
97837314 PB |
107 | - env: CONFIG="--disable-tcg" |
108 | TEST_CMD="" | |
109 | compiler: gcc | |
1d002037 AB |
110 | - env: CONFIG="" |
111 | os: osx | |
112 | compiler: clang | |
ae6d692d AB |
113 | # Python builds |
114 | - env: CONFIG="--target-list=x86_64-softmmu" | |
8e73a3c5 DB |
115 | python: |
116 | - "3.0" | |
ae6d692d | 117 | - env: CONFIG="--target-list=x86_64-softmmu" |
8e73a3c5 DB |
118 | python: |
119 | - "3.6" | |
32265288 AB |
120 | # Using newer GCC with sanitizers |
121 | - addons: | |
122 | apt: | |
ac07ffc6 | 123 | update: true |
32265288 AB |
124 | sources: |
125 | # PPAs for newer toolchains | |
126 | - ubuntu-toolchain-r-test | |
127 | packages: | |
128 | # Extra toolchains | |
ac07ffc6 AB |
129 | - gcc-7 |
130 | - g++-7 | |
32265288 AB |
131 | # Build dependencies |
132 | - libaio-dev | |
133 | - libattr1-dev | |
134 | - libbrlapi-dev | |
135 | - libcap-ng-dev | |
136 | - libgnutls-dev | |
137 | - libgtk-3-dev | |
138 | - libiscsi-dev | |
139 | - liblttng-ust-dev | |
140 | - libnfs-dev | |
141 | - libncurses5-dev | |
142 | - libnss3-dev | |
143 | - libpixman-1-dev | |
144 | - libpng12-dev | |
145 | - librados-dev | |
146 | - libsdl1.2-dev | |
147 | - libseccomp-dev | |
148 | - libspice-protocol-dev | |
149 | - libspice-server-dev | |
150 | - libssh2-1-dev | |
151 | - liburcu-dev | |
152 | - libusb-1.0-0-dev | |
153 | - libvte-2.90-dev | |
154 | - sparse | |
155 | - uuid-dev | |
156 | language: generic | |
157 | compiler: none | |
158 | env: | |
ac07ffc6 AB |
159 | - COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7 |
160 | - CONFIG="--cc=gcc-7 --cxx=g++-7 --disable-pie --disable-linux-user" | |
32265288 AB |
161 | - TEST_CMD="" |
162 | before_script: | |
6a259f8d | 163 | - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || { cat config.log && exit 1; } |
65b26da4 AB |
164 | - env: |
165 | - CONFIG="--disable-system --disable-docs" | |
166 | - TEST_CMD="make check-tcg" | |
167 | script: | |
168 | - make ${MAKEFLAGS} && ${TEST_CMD} ${MAKEFLAGS} | |
169 | sudo: required | |
170 | dist: trusty | |
171 | compiler: gcc |