]> git.ipfire.org Git - thirdparty/qemu.git/blob - .travis.yml
.travis.yml: Add description to each job
[thirdparty/qemu.git] / .travis.yml
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
5 language: c
6 compiler:
7 - gcc
8 cache:
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
15 timeout: 1200
16 ccache: true
17 pip: true
18 directories:
19 - $HOME/avocado/data/cache
20
21
22 addons:
23 apt:
24 packages:
25 # Build dependencies
26 - libaio-dev
27 - libattr1-dev
28 - libbrlapi-dev
29 - libcap-ng-dev
30 - libgcc-4.8-dev
31 - libgnutls28-dev
32 - libgtk-3-dev
33 - libiscsi-dev
34 - liblttng-ust-dev
35 - libncurses5-dev
36 - libnfs-dev
37 - libnss3-dev
38 - libpixman-1-dev
39 - libpng-dev
40 - librados-dev
41 - libsdl2-dev
42 - libsdl2-image-dev
43 - libseccomp-dev
44 - libspice-protocol-dev
45 - libspice-server-dev
46 - libssh-dev
47 - liburcu-dev
48 - libusb-1.0-0-dev
49 - libvdeplug-dev
50 - libvte-2.91-dev
51 - sparse
52 - uuid-dev
53 - gcovr
54 # Tests dependencies
55 - genisoimage
56
57
58 # The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
59 # to prevent IRC notifications from forks. This was created using:
60 # $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
61 notifications:
62 irc:
63 channels:
64 - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
65 on_success: change
66 on_failure: always
67
68
69 env:
70 global:
71 - SRC_DIR=".."
72 - BUILD_DIR="build"
73 - BASE_CONFIG="--disable-docs --disable-tools"
74 - TEST_CMD="make check V=1"
75 # This is broadly a list of "mainline" softmmu targets which have support across the major distros
76 - MAIN_SOFTMMU_TARGETS="aarch64-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
77 - CCACHE_SLOPPINESS="include_file_ctime,include_file_mtime"
78 - CCACHE_MAXSIZE=1G
79
80
81 git:
82 # we want to do this ourselves
83 submodules: false
84
85
86 before_script:
87 - if command -v ccache ; then ccache --zero-stats ; fi
88 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
89 - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
90 script:
91 - BUILD_RC=0 && make -j3 || BUILD_RC=$?
92 - if [ "$BUILD_RC" -eq 0 ] ; then travis_retry ${TEST_CMD} ; else $(exit $BUILD_RC); fi
93 after_script:
94 - if command -v ccache ; then ccache --show-stats ; fi
95
96
97 matrix:
98 include:
99 - name: "GCC static (user)"
100 env:
101 - CONFIG="--disable-system --static"
102 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
103
104
105 # we split the system builds as it takes a while to build them all
106 - name: "GCC (main-softmmu)"
107 env:
108 - CONFIG="--disable-user --target-list=${MAIN_SOFTMMU_TARGETS}"
109 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
110
111
112 - name: "GCC (other-softmmu)"
113 env:
114 - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
115 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
116
117
118 # Just build tools and run minimal unit and softfloat checks
119 - name: "GCC check-softfloat (user)"
120 env:
121 - BASE_CONFIG="--enable-tools"
122 - CONFIG="--disable-user --disable-system"
123 - TEST_CMD="make check-unit check-softfloat -j3"
124 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
125
126
127 # --enable-debug implies --enable-debug-tcg, also runs quite a bit slower
128 - name: "GCC debug (main-softmmu)"
129 env:
130 - CONFIG="--enable-debug --target-list=${MAIN_SOFTMMU_TARGETS}"
131 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug"
132
133
134 # TCG debug can be run just on its own and is mostly agnostic to user/softmmu distinctions
135 - name: "GCC debug (user)"
136 env:
137 - CONFIG="--enable-debug-tcg --disable-system"
138 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
139
140
141 - name: "GCC some libs disabled (main-softmmu)"
142 env:
143 - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-libusb --disable-replication --target-list=${MAIN_SOFTMMU_TARGETS}"
144
145
146 # Module builds are mostly of interest to major distros
147 - name: "GCC modules (main-softmmu)"
148 env:
149 - CONFIG="--enable-modules --target-list=${MAIN_SOFTMMU_TARGETS}"
150 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
151
152
153 # Alternate coroutines implementations are only really of interest to KVM users
154 # However we can't test against KVM on Travis so we can only run unit tests
155 - name: "check-unit coroutine=ucontext"
156 env:
157 - CONFIG="--with-coroutine=ucontext --disable-tcg"
158 - TEST_CMD="make check-unit -j3 V=1"
159
160
161 - name: "check-unit coroutine=sigaltstack"
162 env:
163 - CONFIG="--with-coroutine=sigaltstack --disable-tcg"
164 - TEST_CMD="make check-unit -j3 V=1"
165
166
167 # Check we can build docs and tools (out of tree)
168 - name: "tools and docs"
169 env:
170 - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
171 - BASE_CONFIG="--enable-tools --enable-docs"
172 - CONFIG="--target-list=x86_64-softmmu,aarch64-linux-user"
173 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
174 addons:
175 apt:
176 packages:
177 - python-sphinx
178 - texinfo
179 - perl
180
181
182 # Test with Clang for compile portability (Travis uses clang-5.0)
183 - name: "Clang (user)"
184 env:
185 - CONFIG="--disable-system"
186 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
187 compiler: clang
188
189
190 - name: "Clang (main-softmmu)"
191 env:
192 - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS} "
193 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-sanitize"
194 compiler: clang
195 before_script:
196 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
197 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-fsanitize=undefined -Werror" || { cat config.log && exit 1; }
198
199
200 - name: "Clang (other-softmmu)"
201 env:
202 - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
203 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
204 compiler: clang
205
206
207 # gprof/gcov are GCC features
208 - name: "GCC gprof/gcov"
209 env:
210 - CONFIG="--enable-gprof --enable-gcov --disable-pie --target-list=${MAIN_SOFTMMU_TARGETS}"
211 after_success:
212 - ${SRC_DIR}/scripts/travis/coverage-summary.sh
213
214
215 # We manually include builds which we disable "make check" for
216 - name: "GCC without-default-devices (softmmu)"
217 env:
218 - CONFIG="--without-default-devices --disable-user"
219 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
220 - TEST_CMD=""
221
222
223 # Check the TCG interpreter (TCI)
224 - name: "GCC TCI"
225 env:
226 - CONFIG="--enable-debug-tcg --enable-tcg-interpreter --disable-kvm --disable-containers
227 --target-list=alpha-softmmu,arm-softmmu,hppa-softmmu,m68k-softmmu,microblaze-softmmu,moxie-softmmu,ppc-softmmu,s390x-softmmu,x86_64-softmmu"
228 - TEST_CMD="make check-qtest check-tcg V=1"
229
230
231 # We don't need to exercise every backend with every front-end
232 - name: "GCC trace log,simple,syslog (user)"
233 env:
234 - CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
235 - TEST_CMD=""
236
237
238 - name: "GCC trace ftrace (x86_64-softmmu)"
239 env:
240 - CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
241 - TEST_CMD=""
242
243
244 - name: "GCC trace ust (x86_64-softmmu)"
245 env:
246 - CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
247 - TEST_CMD=""
248
249
250 # MacOSX builds - cirrus.yml also tests some MacOS builds including latest Xcode
251
252 - name: "OSX Xcode 10.3"
253 env:
254 - CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
255 os: osx
256 osx_image: xcode10.3
257 compiler: clang
258 addons:
259 homebrew:
260 packages:
261 - ccache
262 - glib
263 - pixman
264 - gnu-sed
265 - python
266 update: true
267 before_script:
268 - brew link --overwrite python
269 - export PATH="/usr/local/opt/ccache/libexec:$PATH"
270 - if command -v ccache ; then ccache --zero-stats ; fi
271 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
272 - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
273
274
275 # Python builds
276 - name: "GCC Python 3.5 (x86_64-softmmu)"
277 env:
278 - CONFIG="--target-list=x86_64-softmmu"
279 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
280 language: python
281 python:
282 - "3.5"
283
284
285 - name: "GCC Python 3.6 (x86_64-softmmu)"
286 env:
287 - CONFIG="--target-list=x86_64-softmmu"
288 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
289 language: python
290 python:
291 - "3.6"
292
293
294 # Acceptance (Functional) tests
295 - name: "GCC check-acceptance"
296 env:
297 - CONFIG="--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"
298 - TEST_CMD="make check-acceptance"
299 after_script:
300 - python3 -c 'import json; r = json.load(open("tests/results/latest/results.json")); [print(t["logfile"]) for t in r["tests"] if t["status"] not in ("PASS", "SKIP")]' | xargs cat
301 addons:
302 apt:
303 packages:
304 - python3-pil
305 - python3-pip
306 - python3.5-venv
307 - tesseract-ocr
308 - tesseract-ocr-eng
309
310
311 # Using newer GCC with sanitizers
312 - name: "GCC9 with sanitizers (softmmu)"
313 addons:
314 apt:
315 update: true
316 sources:
317 # PPAs for newer toolchains
318 - ubuntu-toolchain-r-test
319 packages:
320 # Extra toolchains
321 - gcc-9
322 - g++-9
323 # Build dependencies
324 - libaio-dev
325 - libattr1-dev
326 - libbrlapi-dev
327 - libcap-ng-dev
328 - libgnutls-dev
329 - libgtk-3-dev
330 - libiscsi-dev
331 - liblttng-ust-dev
332 - libnfs-dev
333 - libncurses5-dev
334 - libnss3-dev
335 - libpixman-1-dev
336 - libpng12-dev
337 - librados-dev
338 - libsdl2-dev
339 - libsdl2-image-dev
340 - libseccomp-dev
341 - libspice-protocol-dev
342 - libspice-server-dev
343 - libssh-dev
344 - liburcu-dev
345 - libusb-1.0-0-dev
346 - libvte-2.91-dev
347 - sparse
348 - uuid-dev
349 language: generic
350 compiler: none
351 env:
352 - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9
353 - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-pie --disable-linux-user"
354 - TEST_CMD=""
355 before_script:
356 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
357 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-g3 -O0 -Wno-error=stringop-truncation -fsanitize=thread" --extra-ldflags="-fuse-ld=gold" || { cat config.log && exit 1; }
358
359
360 # Run check-tcg against linux-user
361 - name: "GCC check-tcg (user)"
362 env:
363 - CONFIG="--disable-system --enable-debug-tcg"
364 - TEST_CMD="make -j3 check-tcg V=1"
365 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
366
367
368 # Run check-tcg against linux-user (with plugins)
369 # we skip sparc64-linux-user until it has been fixed somewhat
370 - name: "GCC plugins check-tcg (user)"
371 env:
372 - CONFIG="--disable-system --enable-plugins --enable-debug-tcg --target-list-exclude=sparc64-linux-user"
373 - TEST_CMD="make -j3 check-tcg V=1"
374 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
375
376
377 # Run check-tcg against softmmu targets
378 - name: "GCC check-tcg (some-softmmu)"
379 env:
380 - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
381 - TEST_CMD="make -j3 check-tcg V=1"
382 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
383
384
385 # Run check-tcg against softmmu targets (with plugins)
386 - name: "GCC plugins check-tcg (some-softmmu)"
387 env:
388 - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
389 - TEST_CMD="make -j3 check-tcg V=1"
390 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
391
392 - name: "[aarch64] GCC check-tcg"
393 arch: arm64
394 dist: xenial
395 addons:
396 apt_packages:
397 - libaio-dev
398 - libattr1-dev
399 - libbrlapi-dev
400 - libcap-ng-dev
401 - libgcrypt20-dev
402 - libgnutls28-dev
403 - libgtk-3-dev
404 - libiscsi-dev
405 - liblttng-ust-dev
406 - libncurses5-dev
407 - libnfs-dev
408 - libnss3-dev
409 - libpixman-1-dev
410 - libpng-dev
411 - librados-dev
412 - libsdl2-dev
413 - libseccomp-dev
414 - liburcu-dev
415 - libusb-1.0-0-dev
416 - libvdeplug-dev
417 - libvte-2.91-dev
418 # Tests dependencies
419 - genisoimage
420 env:
421 - TEST_CMD="make check check-tcg V=1"
422 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS}"
423
424 - name: "[ppc64] GCC check-tcg"
425 arch: ppc64le
426 dist: xenial
427 addons:
428 apt_packages:
429 - libaio-dev
430 - libattr1-dev
431 - libbrlapi-dev
432 - libcap-ng-dev
433 - libgcrypt20-dev
434 - libgnutls28-dev
435 - libgtk-3-dev
436 - libiscsi-dev
437 - liblttng-ust-dev
438 - libncurses5-dev
439 - libnfs-dev
440 - libnss3-dev
441 - libpixman-1-dev
442 - libpng-dev
443 - librados-dev
444 - libsdl2-dev
445 - libseccomp-dev
446 - liburcu-dev
447 - libusb-1.0-0-dev
448 - libvdeplug-dev
449 - libvte-2.91-dev
450 # Tests dependencies
451 - genisoimage
452 env:
453 - TEST_CMD="make check check-tcg V=1"
454 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},ppc64le-linux-user"
455
456 - name: "[s390x] GCC check-tcg"
457 arch: s390x
458 dist: bionic
459 addons:
460 apt_packages:
461 - libaio-dev
462 - libattr1-dev
463 - libbrlapi-dev
464 - libcap-ng-dev
465 - libgcrypt20-dev
466 - libgnutls28-dev
467 - libgtk-3-dev
468 - libiscsi-dev
469 - liblttng-ust-dev
470 - libncurses5-dev
471 - libnfs-dev
472 - libnss3-dev
473 - libpixman-1-dev
474 - libpng-dev
475 - librados-dev
476 - libsdl2-dev
477 - libseccomp-dev
478 - liburcu-dev
479 - libusb-1.0-0-dev
480 - libvdeplug-dev
481 - libvte-2.91-dev
482 # Tests dependencies
483 - genisoimage
484 env:
485 - TEST_CMD="make check check-tcg V=1"
486 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user"
487
488 # Release builds
489 # The make-release script expect a QEMU version, so our tag must start with a 'v'.
490 # This is the case when release candidate tags are created.
491 - name: "Release tarball"
492 if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
493 env:
494 # We want to build from the release tarball
495 - BUILD_DIR="release/build/dir" SRC_DIR="../../.."
496 - BASE_CONFIG="--prefix=$PWD/dist"
497 - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user"
498 - TEST_CMD="make install -j3"
499 - QEMU_VERSION="${TRAVIS_TAG:1}"
500 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
501 before_script:
502 - command -v ccache && ccache --zero-stats
503 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
504 script:
505 - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2
506 - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2
507 - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION}
508 - mkdir -p release-build && cd release-build
509 - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
510 - make install