]>
Commit | Line | Data |
---|---|---|
95310576 AB |
1 | # The current Travis default is a VM based 16.04 Xenial on GCE |
2 | # Additional builds with specific requirements for a full VM need to | |
3 | # be added as additional matrix: entries later on | |
4 | dist: xenial | |
fe863ab9 | 5 | language: c |
fe863ab9 AB |
6 | compiler: |
7 | - gcc | |
4bc629b2 | 8 | cache: |
5ef9c53c PMD |
9 | # There is one cache per branch and compiler version. |
10 | # characteristics of each job are used to identify the cache: | |
11 | # - OS name (currently, linux, osx, or windows) | |
12 | # - OS distribution (for Linux, xenial, trusty, or precise) | |
13 | # - macOS image name (e.g., xcode7.2) | |
14 | # - Names and values of visible environment variables set in .travis.yml or Settings panel | |
731cbb64 | 15 | timeout: 1200 |
4bc629b2 | 16 | ccache: true |
6e189d78 | 17 | pip: true |
c1073e44 PMD |
18 | directories: |
19 | - $HOME/avocado/data/cache | |
197be697 DB |
20 | |
21 | ||
692d162c AB |
22 | addons: |
23 | apt: | |
24 | packages: | |
32265288 | 25 | # Build dependencies |
692d162c AB |
26 | - libaio-dev |
27 | - libattr1-dev | |
28 | - libbrlapi-dev | |
c269447f | 29 | - libcap-dev |
692d162c | 30 | - libcap-ng-dev |
7524a39d | 31 | - libgcc-4.8-dev |
3c7a8b41 | 32 | - libgnutls28-dev |
692d162c AB |
33 | - libgtk-3-dev |
34 | - libiscsi-dev | |
35 | - liblttng-ust-dev | |
36 | - libncurses5-dev | |
d83414e1 | 37 | - libnfs-dev |
692d162c AB |
38 | - libnss3-dev |
39 | - libpixman-1-dev | |
3c7a8b41 | 40 | - libpng-dev |
692d162c | 41 | - librados-dev |
241e7955 TH |
42 | - libsdl2-dev |
43 | - libsdl2-image-dev | |
692d162c AB |
44 | - libseccomp-dev |
45 | - libspice-protocol-dev | |
46 | - libspice-server-dev | |
b10d49d7 | 47 | - libssh-dev |
692d162c AB |
48 | - liburcu-dev |
49 | - libusb-1.0-0-dev | |
7c1dd4d1 | 50 | - libvdeplug-dev |
95310576 | 51 | - libvte-2.91-dev |
692d162c AB |
52 | - sparse |
53 | - uuid-dev | |
0708e647 | 54 | - gcovr |
91fa7dd1 AB |
55 | homebrew: |
56 | packages: | |
0d8773c2 | 57 | - ccache |
91fa7dd1 AB |
58 | - glib |
59 | - pixman | |
db2b95d5 | 60 | - gnu-sed |
71451cff | 61 | update: true |
692d162c | 62 | |
197be697 | 63 | |
cb4c2536 PK |
64 | # The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu |
65 | # to prevent IRC notifications from forks. This was created using: | |
66 | # $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu" | |
39d16d29 AB |
67 | notifications: |
68 | irc: | |
69 | channels: | |
cb4c2536 | 70 | - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM=" |
39d16d29 AB |
71 | on_success: change |
72 | on_failure: always | |
197be697 DB |
73 | |
74 | ||
fe863ab9 AB |
75 | env: |
76 | global: | |
ebf2ff65 PMD |
77 | - SRC_DIR="." |
78 | - BUILD_DIR="." | |
570f3c77 | 79 | - BASE_CONFIG="--disable-docs --disable-tools" |
05273a43 | 80 | - TEST_CMD="make check V=1" |
8c3daf97 AB |
81 | # This is broadly a list of "mainline" softmmu targets which have support across the major distros |
82 | - MAIN_SOFTMMU_TARGETS="aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu" | |
bcfbf0d5 PMD |
83 | - CCACHE_SLOPPINESS="include_file_ctime,include_file_mtime" |
84 | - CCACHE_MAXSIZE=1G | |
85 | ||
197be697 | 86 | |
cb021cfe AB |
87 | git: |
88 | # we want to do this ourselves | |
89 | submodules: false | |
197be697 DB |
90 | |
91 | ||
eebf2940 | 92 | before_script: |
0d8773c2 | 93 | - if [ "$TRAVIS_OS_NAME" == "osx" ] ; then export PATH="/usr/local/opt/ccache/libexec:$PATH" ; fi |
312995c2 | 94 | - if command -v ccache ; then ccache --zero-stats ; fi |
ebf2ff65 | 95 | - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR} |
570f3c77 | 96 | - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; } |
eebf2940 | 97 | script: |
3a37c13f | 98 | - make -j3 && travis_retry ${TEST_CMD} |
bcfbf0d5 | 99 | after_script: |
312995c2 | 100 | - if command -v ccache ; then ccache --show-stats ; fi |
197be697 DB |
101 | |
102 | ||
fe863ab9 | 103 | matrix: |
fe863ab9 | 104 | include: |
c21d7efc | 105 | - env: |
c3c1874a | 106 | - CONFIG="--disable-system --static" |
7d183c54 | 107 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
3e094234 DB |
108 | |
109 | ||
8c3daf97 AB |
110 | # we split the system builds as it takes a while to build them all |
111 | - env: | |
112 | - CONFIG="--disable-user --target-list=${MAIN_SOFTMMU_TARGETS}" | |
7d183c54 | 113 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
8c3daf97 AB |
114 | |
115 | ||
c21d7efc | 116 | - env: |
8c3daf97 | 117 | - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}" |
7d183c54 | 118 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
3e094234 DB |
119 | |
120 | ||
df2bb38e AB |
121 | # Just build tools and run minimal unit and softfloat checks |
122 | - env: | |
123 | - BASE_CONFIG="--enable-tools" | |
124 | - CONFIG="--disable-user --disable-system" | |
125 | - TEST_CMD="make check-unit check-softfloat -j3" | |
7d183c54 PMD |
126 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
127 | ||
df2bb38e | 128 | |
138382c6 | 129 | # --enable-debug implies --enable-debug-tcg, also runs quite a bit slower |
c21d7efc | 130 | - env: |
138382c6 | 131 | - CONFIG="--enable-debug --target-list=${MAIN_SOFTMMU_TARGETS}" |
8fb90e3d | 132 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug" |
4e6e7df6 AB |
133 | |
134 | ||
138382c6 | 135 | # TCG debug can be run just on its own and is mostly agnostic to user/softmmu distinctions |
4e6e7df6 AB |
136 | - env: |
137 | - CONFIG="--enable-debug-tcg --disable-system" | |
19633df8 | 138 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" |
3e094234 DB |
139 | |
140 | ||
c21d7efc | 141 | - env: |
aec2927d | 142 | - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-libusb --disable-replication --target-list=${MAIN_SOFTMMU_TARGETS}" |
3e094234 DB |
143 | |
144 | ||
2f6c2526 | 145 | # Module builds are mostly of interest to major distros |
c21d7efc | 146 | - env: |
8c3daf97 | 147 | - CONFIG="--enable-modules --target-list=${MAIN_SOFTMMU_TARGETS}" |
7d183c54 | 148 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
3e094234 DB |
149 | |
150 | ||
f3908ff7 AB |
151 | # Alternate coroutines implementations are only really of interest to KVM users |
152 | # However we can't test against KVM on Travis so we can only run unit tests | |
c21d7efc | 153 | - env: |
f3908ff7 AB |
154 | - CONFIG="--with-coroutine=ucontext --disable-tcg" |
155 | - TEST_CMD="make check-unit -j3 V=1" | |
3e094234 DB |
156 | |
157 | ||
c21d7efc | 158 | - env: |
f3908ff7 AB |
159 | - CONFIG="--with-coroutine=sigaltstack --disable-tcg" |
160 | - TEST_CMD="make check-unit -j3 V=1" | |
3e094234 DB |
161 | |
162 | ||
956d4506 | 163 | # Check we can build docs and tools (out of tree) |
570f3c77 | 164 | - env: |
956d4506 | 165 | - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.." |
570f3c77 AB |
166 | - BASE_CONFIG="--enable-tools --enable-docs" |
167 | - CONFIG="--target-list=x86_64-softmmu,aarch64-linux-user" | |
7d183c54 | 168 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
570f3c77 AB |
169 | addons: |
170 | apt: | |
171 | packages: | |
172 | - python-sphinx | |
173 | - texinfo | |
174 | - perl | |
175 | ||
197be697 | 176 | |
ae6d692d | 177 | # Test with Clang for compile portability (Travis uses clang-5.0) |
c21d7efc DB |
178 | - env: |
179 | - CONFIG="--disable-system" | |
e2bef011 | 180 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default" |
ae6d692d | 181 | compiler: clang |
197be697 DB |
182 | |
183 | ||
c21d7efc | 184 | - env: |
8c3daf97 | 185 | - CONFIG="--disable-user --target-list=${MAIN_SOFTMMU_TARGETS}" |
e2bef011 | 186 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default" |
8c3daf97 AB |
187 | compiler: clang |
188 | ||
189 | ||
7831147e AB |
190 | - env: |
191 | - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS} " | |
b08c2ae3 | 192 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-sanitize" |
7831147e AB |
193 | compiler: clang |
194 | before_script: | |
195 | - ./configure ${CONFIG} --extra-cflags="-fsanitize=undefined -Werror" || { cat config.log && exit 1; } | |
196 | ||
197 | ||
8c3daf97 AB |
198 | - env: |
199 | - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}" | |
e2bef011 | 200 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default" |
d9a6b013 | 201 | compiler: clang |
197be697 DB |
202 | |
203 | ||
6c933291 | 204 | # gprof/gcov are GCC features |
c21d7efc | 205 | - env: |
8c3daf97 | 206 | - CONFIG="--enable-gprof --enable-gcov --disable-pie --target-list=${MAIN_SOFTMMU_TARGETS}" |
0708e647 AB |
207 | after_success: |
208 | - ${SRC_DIR}/scripts/travis/coverage-summary.sh | |
197be697 DB |
209 | |
210 | ||
20885b5b PB |
211 | # We manually include builds which we disable "make check" for |
212 | - env: | |
386dc514 | 213 | - CONFIG="--without-default-devices --disable-user" |
7d183c54 | 214 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
20885b5b PB |
215 | - TEST_CMD="" |
216 | ||
217 | ||
6c933291 | 218 | # We manually include builds which we disable "make check" for |
c21d7efc DB |
219 | - env: |
220 | - CONFIG="--enable-debug --enable-tcg-interpreter" | |
221 | - TEST_CMD="" | |
197be697 DB |
222 | |
223 | ||
f8309de9 | 224 | # We don't need to exercise every backend with every front-end |
c21d7efc DB |
225 | - env: |
226 | - CONFIG="--enable-trace-backends=log,simple,syslog --disable-system" | |
227 | - TEST_CMD="" | |
197be697 DB |
228 | |
229 | ||
c21d7efc DB |
230 | - env: |
231 | - CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu" | |
232 | - TEST_CMD="" | |
197be697 DB |
233 | |
234 | ||
c21d7efc DB |
235 | - env: |
236 | - CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu" | |
237 | - TEST_CMD="" | |
197be697 DB |
238 | |
239 | ||
adcf9683 | 240 | # MacOSX builds |
c21d7efc | 241 | - env: |
8c3daf97 | 242 | - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS}" |
1d002037 | 243 | os: osx |
adcf9683 AB |
244 | osx_image: xcode9.4 |
245 | compiler: clang | |
197be697 DB |
246 | |
247 | ||
cd7507cb PMD |
248 | - env: |
249 | - CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu" | |
250 | os: osx | |
0cb3e7ba | 251 | osx_image: xcode10.3 |
cd7507cb PMD |
252 | compiler: clang |
253 | ||
254 | ||
ae6d692d | 255 | # Python builds |
c21d7efc DB |
256 | - env: |
257 | - CONFIG="--target-list=x86_64-softmmu" | |
7d183c54 | 258 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
53fefde4 | 259 | language: python |
8e73a3c5 | 260 | python: |
53fefde4 | 261 | - "3.4" |
197be697 DB |
262 | |
263 | ||
c21d7efc DB |
264 | - env: |
265 | - CONFIG="--target-list=x86_64-softmmu" | |
7d183c54 | 266 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
53fefde4 | 267 | language: python |
8e73a3c5 DB |
268 | python: |
269 | - "3.6" | |
197be697 DB |
270 | |
271 | ||
aa983ff6 | 272 | # Acceptance (Functional) tests |
c21d7efc | 273 | - env: |
83703220 | 274 | - CONFIG="--python=/usr/bin/python3 --target-list=x86_64-softmmu,mips-softmmu,mips64el-softmmu,aarch64-softmmu,arm-softmmu,s390x-softmmu,alpha-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,sparc-softmmu" |
0b98c20a | 275 | - TEST_CMD="make check-acceptance" |
c21f30eb CR |
276 | after_failure: |
277 | - cat tests/results/latest/job.log | |
aa983ff6 CR |
278 | addons: |
279 | apt: | |
280 | packages: | |
25311649 | 281 | - python3-pil |
aa983ff6 | 282 | - python3-pip |
95310576 | 283 | - python3.5-venv |
25311649 PMD |
284 | - tesseract-ocr |
285 | - tesseract-ocr-eng | |
286 | ||
287 | ||
32265288 AB |
288 | # Using newer GCC with sanitizers |
289 | - addons: | |
290 | apt: | |
ac07ffc6 | 291 | update: true |
32265288 AB |
292 | sources: |
293 | # PPAs for newer toolchains | |
294 | - ubuntu-toolchain-r-test | |
295 | packages: | |
296 | # Extra toolchains | |
3998c25e AB |
297 | - gcc-9 |
298 | - g++-9 | |
32265288 AB |
299 | # Build dependencies |
300 | - libaio-dev | |
301 | - libattr1-dev | |
302 | - libbrlapi-dev | |
303 | - libcap-ng-dev | |
304 | - libgnutls-dev | |
305 | - libgtk-3-dev | |
306 | - libiscsi-dev | |
307 | - liblttng-ust-dev | |
308 | - libnfs-dev | |
309 | - libncurses5-dev | |
310 | - libnss3-dev | |
311 | - libpixman-1-dev | |
312 | - libpng12-dev | |
313 | - librados-dev | |
241e7955 TH |
314 | - libsdl2-dev |
315 | - libsdl2-image-dev | |
32265288 AB |
316 | - libseccomp-dev |
317 | - libspice-protocol-dev | |
318 | - libspice-server-dev | |
b10d49d7 | 319 | - libssh-dev |
32265288 AB |
320 | - liburcu-dev |
321 | - libusb-1.0-0-dev | |
95310576 | 322 | - libvte-2.91-dev |
32265288 AB |
323 | - sparse |
324 | - uuid-dev | |
325 | language: generic | |
326 | compiler: none | |
327 | env: | |
3998c25e AB |
328 | - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9 |
329 | - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-pie --disable-linux-user" | |
32265288 AB |
330 | - TEST_CMD="" |
331 | before_script: | |
3998c25e | 332 | - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -Wno-error=stringop-truncation -fsanitize=thread -fuse-ld=gold" || { cat config.log && exit 1; } |
197be697 DB |
333 | |
334 | ||
dab3a7c0 | 335 | # Run check-tcg against linux-user |
65b26da4 | 336 | - env: |
2efabbe1 | 337 | - CONFIG="--disable-system --enable-debug-tcg" |
e2576f9b | 338 | - TEST_CMD="make -j3 check-tcg V=1" |
19633df8 | 339 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" |
7d183c54 | 340 | |
dab3a7c0 | 341 | |
4fbddb5d AB |
342 | # Run check-tcg against linux-user (with plugins) |
343 | # we skip sparc64-linux-user until it has been fixed somewhat | |
344 | - env: | |
19633df8 | 345 | - CONFIG="--disable-system --enable-plugins --enable-debug-tcg --target-list-exclude=sparc64-linux-user" |
4fbddb5d | 346 | - TEST_CMD="make -j3 check-tcg V=1" |
19633df8 | 347 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" |
7d183c54 | 348 | |
dab3a7c0 AB |
349 | |
350 | # Run check-tcg against softmmu targets | |
351 | - env: | |
2efabbe1 | 352 | - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu" |
dab3a7c0 | 353 | - TEST_CMD="make -j3 check-tcg V=1" |
19633df8 | 354 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" |
61ac3dcc PMD |
355 | |
356 | ||
4fbddb5d AB |
357 | # Run check-tcg against softmmu targets (with plugins) |
358 | - env: | |
19633df8 | 359 | - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu" |
4fbddb5d | 360 | - TEST_CMD="make -j3 check-tcg V=1" |
19633df8 | 361 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" |
61ac3dcc PMD |
362 | |
363 | ||
364 | # Release builds | |
365 | # The make-release script expect a QEMU version, so our tag must start with a 'v'. | |
366 | # This is the case when release candidate tags are created. | |
367 | - if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/ | |
368 | env: | |
369 | # We want to build from the release tarball | |
370 | - BUILD_DIR="release/build/dir" SRC_DIR="../../.." | |
371 | - BASE_CONFIG="--prefix=$PWD/dist" | |
372 | - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user" | |
373 | - TEST_CMD="make install -j3" | |
374 | - QEMU_VERSION="${TRAVIS_TAG:1}" | |
375 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" | |
376 | before_script: | |
377 | - command -v ccache && ccache --zero-stats | |
378 | - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR} | |
379 | script: | |
380 | - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2 | |
381 | - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 | |
382 | - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION} | |
383 | - ./configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; } | |
384 | - make install |