]> git.proxmox.com Git - mirror_qemu.git/blob - .travis.yml
travis.yml: Drop the Python 3.5 build
[mirror_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 os: linux
5 dist: focal
6 language: c
7 compiler:
8 - gcc
9 cache:
10 # There is one cache per branch and compiler version.
11 # characteristics of each job are used to identify the cache:
12 # - OS name (currently only linux)
13 # - OS distribution (for Linux, bionic or focal)
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-7-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 - libzstd-dev
52 - sparse
53 - uuid-dev
54 - gcovr
55 # Tests dependencies
56 - genisoimage
57
58
59 # The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
60 # to prevent IRC notifications from forks. This was created using:
61 # $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
62 notifications:
63 irc:
64 channels:
65 - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
66 on_success: change
67 on_failure: always
68
69
70 env:
71 global:
72 - SRC_DIR=".."
73 - BUILD_DIR="build"
74 - BASE_CONFIG="--disable-docs --disable-tools"
75 - TEST_BUILD_CMD=""
76 - TEST_CMD="make check V=1"
77 # This is broadly a list of "mainline" softmmu targets which have support across the major distros
78 - MAIN_SOFTMMU_TARGETS="aarch64-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
79 - CCACHE_SLOPPINESS="include_file_ctime,include_file_mtime"
80 - CCACHE_MAXSIZE=1G
81 - G_MESSAGES_DEBUG=error
82
83
84 git:
85 # we want to do this ourselves
86 submodules: false
87
88 # Common first phase for all steps
89 before_install:
90 - if command -v ccache ; then ccache --zero-stats ; fi
91 - export JOBS=$(($(getconf _NPROCESSORS_ONLN) + 1))
92 - echo "=== Using ${JOBS} simultaneous jobs ==="
93
94 # Configure step - may be overridden
95 before_script:
96 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
97 - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
98
99 # Main build & test - rarely overridden - controlled by TEST_CMD
100 script:
101 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
102 - |
103 if [ "$BUILD_RC" -eq 0 ] && [ -n "$TEST_BUILD_CMD" ]; then
104 ${TEST_BUILD_CMD} || BUILD_RC=$?
105 else
106 $(exit $BUILD_RC);
107 fi
108 - |
109 if [ "$BUILD_RC" -eq 0 ] ; then
110 ${TEST_CMD} ;
111 else
112 $(exit $BUILD_RC);
113 fi
114 after_script:
115 - df -h
116 - if command -v ccache ; then ccache --show-stats ; fi
117
118
119 jobs:
120 include:
121 - name: "GCC static (user)"
122 env:
123 - CONFIG="--disable-system --static"
124 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
125
126 # Just build tools and run minimal unit and softfloat checks
127 - name: "GCC check-unit and check-softfloat"
128 env:
129 - BASE_CONFIG="--enable-tools"
130 - CONFIG="--disable-user --disable-system"
131 - TEST_CMD="make check-unit check-softfloat -j${JOBS}"
132 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
133
134
135 # --enable-debug implies --enable-debug-tcg, also runs quite a bit slower
136 - name: "GCC debug (main-softmmu)"
137 env:
138 - CONFIG="--enable-debug --target-list=${MAIN_SOFTMMU_TARGETS}"
139 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug"
140
141
142 # TCG debug can be run just on its own and is mostly agnostic to user/softmmu distinctions
143 - name: "GCC debug (user)"
144 env:
145 - CONFIG="--enable-debug-tcg --disable-system"
146 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
147
148 # Module builds are mostly of interest to major distros
149 - name: "GCC modules (main-softmmu)"
150 env:
151 - CONFIG="--enable-modules --target-list=${MAIN_SOFTMMU_TARGETS}"
152 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
153
154
155 # Alternate coroutines implementations are only really of interest to KVM users
156 # However we can't test against KVM on Travis so we can only run unit tests
157 - name: "check-unit coroutine=ucontext"
158 env:
159 - CONFIG="--with-coroutine=ucontext --disable-tcg"
160 - TEST_CMD="make check-unit -j${JOBS} V=1"
161
162
163 - name: "check-unit coroutine=sigaltstack"
164 env:
165 - CONFIG="--with-coroutine=sigaltstack --disable-tcg"
166 - TEST_CMD="make check-unit -j${JOBS} V=1"
167
168
169 # Check we can build docs and tools (out of tree)
170 - name: "tools and docs (bionic)"
171 dist: bionic
172 env:
173 - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
174 - BASE_CONFIG="--enable-tools --enable-docs"
175 - CONFIG="--target-list=x86_64-softmmu,aarch64-linux-user"
176 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
177 addons:
178 apt:
179 packages:
180 - python3-sphinx
181 - perl
182
183
184 # Test with Clang for compile portability (Travis uses clang-5.0)
185 - name: "Clang (user)"
186 env:
187 - CONFIG="--disable-system --host-cc=clang --cxx=clang++"
188 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
189 compiler: clang
190
191
192 - name: "Clang (main-softmmu)"
193 env:
194 - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS}
195 --host-cc=clang --cxx=clang++"
196 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-sanitize"
197 compiler: clang
198 before_script:
199 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
200 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-fsanitize=undefined -Werror" || { cat config.log && exit 1; }
201
202
203 - name: "Clang (other-softmmu)"
204 env:
205 - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}
206 --host-cc=clang --cxx=clang++"
207 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
208 compiler: clang
209
210
211 # gprof/gcov are GCC features
212 - name: "GCC gprof/gcov"
213 dist: bionic
214 env:
215 - CONFIG="--enable-gprof --enable-gcov --disable-libssh
216 --target-list=${MAIN_SOFTMMU_TARGETS}"
217 after_success:
218 - ${SRC_DIR}/scripts/travis/coverage-summary.sh
219
220
221 # We manually include builds which we disable "make check" for
222 - name: "GCC without-default-devices (softmmu)"
223 env:
224 - CONFIG="--without-default-devices --disable-user"
225 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
226 - TEST_CMD=""
227
228
229 # Check the TCG interpreter (TCI)
230 - name: "GCC TCI"
231 env:
232 - CONFIG="--enable-debug-tcg --enable-tcg-interpreter --disable-kvm --disable-containers
233 --target-list=alpha-softmmu,arm-softmmu,hppa-softmmu,m68k-softmmu,microblaze-softmmu,moxie-softmmu,ppc-softmmu,s390x-softmmu,x86_64-softmmu"
234 - TEST_CMD="make check-qtest check-tcg V=1"
235
236
237 # We don't need to exercise every backend with every front-end
238 - name: "GCC trace log,simple,syslog (user)"
239 env:
240 - CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
241 - TEST_CMD=""
242
243
244 - name: "GCC trace ftrace (x86_64-softmmu)"
245 env:
246 - CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
247 - TEST_CMD=""
248
249
250 - name: "GCC trace ust (x86_64-softmmu)"
251 env:
252 - CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
253 - TEST_CMD=""
254
255
256 # Using newer GCC with sanitizers
257 - name: "GCC9 with sanitizers (softmmu)"
258 dist: bionic
259 addons:
260 apt:
261 update: true
262 sources:
263 # PPAs for newer toolchains
264 - ubuntu-toolchain-r-test
265 packages:
266 # Extra toolchains
267 - gcc-9
268 - g++-9
269 # Build dependencies
270 - libaio-dev
271 - libattr1-dev
272 - libbrlapi-dev
273 - libcap-ng-dev
274 - libgnutls28-dev
275 - libgtk-3-dev
276 - libiscsi-dev
277 - liblttng-ust-dev
278 - libnfs-dev
279 - libncurses5-dev
280 - libnss3-dev
281 - libpixman-1-dev
282 - libpng-dev
283 - librados-dev
284 - libsdl2-dev
285 - libsdl2-image-dev
286 - libseccomp-dev
287 - libspice-protocol-dev
288 - libspice-server-dev
289 - liburcu-dev
290 - libusb-1.0-0-dev
291 - libvte-2.91-dev
292 - sparse
293 - uuid-dev
294 language: generic
295 compiler: none
296 env:
297 - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9
298 - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-linux-user"
299 - TEST_CMD=""
300 before_script:
301 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
302 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread" || { cat config.log && exit 1; }
303
304
305 # Run check-tcg against linux-user
306 - name: "GCC check-tcg (user)"
307 env:
308 - CONFIG="--disable-system --enable-debug-tcg"
309 - TEST_BUILD_CMD="make build-tcg"
310 - TEST_CMD="make check-tcg"
311 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
312
313
314 # Run check-tcg against linux-user (with plugins)
315 # we skip sparc64-linux-user until it has been fixed somewhat
316 # we skip cris-linux-user as it doesn't use the common run loop
317 - name: "GCC plugins check-tcg (user)"
318 env:
319 - CONFIG="--disable-system --enable-plugins --enable-debug-tcg --target-list-exclude=sparc64-linux-user,cris-linux-user"
320 - TEST_BUILD_CMD="make build-tcg"
321 - TEST_CMD="make check-tcg"
322 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
323
324
325 # Run check-tcg against softmmu targets
326 - name: "GCC check-tcg (some-softmmu)"
327 env:
328 - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
329 - TEST_BUILD_CMD="make build-tcg"
330 - TEST_CMD="make check-tcg"
331 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
332
333
334 # Run check-tcg against softmmu targets (with plugins)
335 - name: "GCC plugins check-tcg (some-softmmu)"
336 env:
337 - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
338 - TEST_BUILD_CMD="make build-tcg"
339 - TEST_CMD="make check-tcg"
340 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
341
342 - name: "[aarch64] GCC check-tcg"
343 arch: arm64
344 dist: focal
345 addons:
346 apt_packages:
347 - libaio-dev
348 - libattr1-dev
349 - libbrlapi-dev
350 - libcap-ng-dev
351 - libgcrypt20-dev
352 - libgnutls28-dev
353 - libgtk-3-dev
354 - libiscsi-dev
355 - liblttng-ust-dev
356 - libncurses5-dev
357 - libnfs-dev
358 - libnss3-dev
359 - libpixman-1-dev
360 - libpng-dev
361 - librados-dev
362 - libsdl2-dev
363 - libseccomp-dev
364 - liburcu-dev
365 - libusb-1.0-0-dev
366 - libvdeplug-dev
367 - libvte-2.91-dev
368 # Tests dependencies
369 - genisoimage
370 env:
371 - TEST_CMD="make check check-tcg V=1"
372 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS}"
373 - UNRELIABLE=true
374
375 - name: "[ppc64] GCC check-tcg"
376 arch: ppc64le
377 dist: focal
378 addons:
379 apt_packages:
380 - libaio-dev
381 - libattr1-dev
382 - libbrlapi-dev
383 - libcap-ng-dev
384 - libgcrypt20-dev
385 - libgnutls28-dev
386 - libgtk-3-dev
387 - libiscsi-dev
388 - liblttng-ust-dev
389 - libncurses5-dev
390 - libnfs-dev
391 - libnss3-dev
392 - libpixman-1-dev
393 - libpng-dev
394 - librados-dev
395 - libsdl2-dev
396 - libseccomp-dev
397 - liburcu-dev
398 - libusb-1.0-0-dev
399 - libvdeplug-dev
400 - libvte-2.91-dev
401 # Tests dependencies
402 - genisoimage
403 env:
404 - TEST_CMD="make check check-tcg V=1"
405 - CONFIG="--disable-containers --target-list=ppc64-softmmu,ppc64le-linux-user"
406
407 - name: "[s390x] GCC check-tcg"
408 arch: s390x
409 dist: bionic
410 addons:
411 apt_packages:
412 - libaio-dev
413 - libattr1-dev
414 - libbrlapi-dev
415 - libcap-ng-dev
416 - libgcrypt20-dev
417 - libgnutls28-dev
418 - libgtk-3-dev
419 - libiscsi-dev
420 - liblttng-ust-dev
421 - libncurses5-dev
422 - libnfs-dev
423 - libnss3-dev
424 - libpixman-1-dev
425 - libpng-dev
426 - librados-dev
427 - libsdl2-dev
428 - libseccomp-dev
429 - liburcu-dev
430 - libusb-1.0-0-dev
431 - libvdeplug-dev
432 - libvte-2.91-dev
433 # Tests dependencies
434 - genisoimage
435 env:
436 - TEST_CMD="make check check-tcg V=1"
437 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user"
438 - UNRELIABLE=true
439 script:
440 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
441 - |
442 if [ "$BUILD_RC" -eq 0 ] ; then
443 mv pc-bios/s390-ccw/*.img pc-bios/ ;
444 ${TEST_CMD} ;
445 else
446 $(exit $BUILD_RC);
447 fi
448
449 - name: "[s390x] GCC (other-softmmu)"
450 arch: s390x
451 dist: bionic
452 addons:
453 apt_packages:
454 - libaio-dev
455 - libattr1-dev
456 - libcap-ng-dev
457 - libgnutls28-dev
458 - libiscsi-dev
459 - liblttng-ust-dev
460 - liblzo2-dev
461 - libncurses-dev
462 - libnfs-dev
463 - libnss3-dev
464 - libpixman-1-dev
465 - libsdl2-dev
466 - libsdl2-image-dev
467 - libseccomp-dev
468 - libsnappy-dev
469 - libzstd-dev
470 - nettle-dev
471 - xfslibs-dev
472 # Tests dependencies
473 - genisoimage
474 env:
475 - CONFIG="--disable-containers --audio-drv-list=sdl --disable-user
476 --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
477
478 - name: "[s390x] GCC (user)"
479 arch: s390x
480 dist: bionic
481 addons:
482 apt_packages:
483 - libgcrypt20-dev
484 - libgnutls28-dev
485 env:
486 - CONFIG="--disable-containers --disable-system"
487
488 - name: "[s390x] Clang (disable-tcg)"
489 arch: s390x
490 dist: bionic
491 compiler: clang
492 addons:
493 apt_packages:
494 - libaio-dev
495 - libattr1-dev
496 - libbrlapi-dev
497 - libcap-ng-dev
498 - libgcrypt20-dev
499 - libgnutls28-dev
500 - libgtk-3-dev
501 - libiscsi-dev
502 - liblttng-ust-dev
503 - libncurses5-dev
504 - libnfs-dev
505 - libnss3-dev
506 - libpixman-1-dev
507 - libpng-dev
508 - librados-dev
509 - libsdl2-dev
510 - libseccomp-dev
511 - liburcu-dev
512 - libusb-1.0-0-dev
513 - libvdeplug-dev
514 - libvte-2.91-dev
515 env:
516 - TEST_CMD="make check-unit"
517 - CONFIG="--disable-containers --disable-tcg --enable-kvm
518 --disable-tools --host-cc=clang --cxx=clang++"
519 - UNRELIABLE=true
520
521 # Release builds
522 # The make-release script expect a QEMU version, so our tag must start with a 'v'.
523 # This is the case when release candidate tags are created.
524 - name: "Release tarball"
525 if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
526 env:
527 # We want to build from the release tarball
528 - BUILD_DIR="release/build/dir" SRC_DIR="../../.."
529 - BASE_CONFIG="--prefix=$PWD/dist"
530 - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user"
531 - TEST_CMD="make install -j${JOBS}"
532 - QEMU_VERSION="${TRAVIS_TAG:1}"
533 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
534 script:
535 - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2
536 - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2
537 - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION}
538 - mkdir -p release-build && cd release-build
539 - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
540 - make install
541 allow_failures:
542 - env: UNRELIABLE=true