]> git.proxmox.com Git - mirror_qemu.git/blob - .travis.yml
travis.yml: Drop the default softmmu builds
[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: xenial
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, xenial, trusty, or precise)
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 - 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 env:
214 - CONFIG="--enable-gprof --enable-gcov --disable-pie --target-list=${MAIN_SOFTMMU_TARGETS}"
215 after_success:
216 - ${SRC_DIR}/scripts/travis/coverage-summary.sh
217
218
219 # We manually include builds which we disable "make check" for
220 - name: "GCC without-default-devices (softmmu)"
221 env:
222 - CONFIG="--without-default-devices --disable-user"
223 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
224 - TEST_CMD=""
225
226
227 # Check the TCG interpreter (TCI)
228 - name: "GCC TCI"
229 env:
230 - CONFIG="--enable-debug-tcg --enable-tcg-interpreter --disable-kvm --disable-containers
231 --target-list=alpha-softmmu,arm-softmmu,hppa-softmmu,m68k-softmmu,microblaze-softmmu,moxie-softmmu,ppc-softmmu,s390x-softmmu,x86_64-softmmu"
232 - TEST_CMD="make check-qtest check-tcg V=1"
233
234
235 # We don't need to exercise every backend with every front-end
236 - name: "GCC trace log,simple,syslog (user)"
237 env:
238 - CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
239 - TEST_CMD=""
240
241
242 - name: "GCC trace ftrace (x86_64-softmmu)"
243 env:
244 - CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
245 - TEST_CMD=""
246
247
248 - name: "GCC trace ust (x86_64-softmmu)"
249 env:
250 - CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
251 - TEST_CMD=""
252
253
254 # Python builds
255 - name: "GCC Python 3.5 (x86_64-softmmu)"
256 env:
257 - CONFIG="--target-list=x86_64-softmmu"
258 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
259 language: python
260 python: 3.5
261
262
263 - name: "GCC Python 3.6 (x86_64-softmmu)"
264 env:
265 - CONFIG="--target-list=x86_64-softmmu"
266 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
267 language: python
268 python: 3.6
269
270
271 # Using newer GCC with sanitizers
272 - name: "GCC9 with sanitizers (softmmu)"
273 addons:
274 apt:
275 update: true
276 sources:
277 # PPAs for newer toolchains
278 - ubuntu-toolchain-r-test
279 packages:
280 # Extra toolchains
281 - gcc-9
282 - g++-9
283 # Build dependencies
284 - libaio-dev
285 - libattr1-dev
286 - libbrlapi-dev
287 - libcap-ng-dev
288 - libgnutls-dev
289 - libgtk-3-dev
290 - libiscsi-dev
291 - liblttng-ust-dev
292 - libnfs-dev
293 - libncurses5-dev
294 - libnss3-dev
295 - libpixman-1-dev
296 - libpng12-dev
297 - librados-dev
298 - libsdl2-dev
299 - libsdl2-image-dev
300 - libseccomp-dev
301 - libspice-protocol-dev
302 - libspice-server-dev
303 - libssh-dev
304 - liburcu-dev
305 - libusb-1.0-0-dev
306 - libvte-2.91-dev
307 - sparse
308 - uuid-dev
309 language: generic
310 compiler: none
311 env:
312 - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9
313 - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-pie --disable-linux-user"
314 - TEST_CMD=""
315 before_script:
316 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
317 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-g3 -O0 -Wno-error=stringop-truncation -fsanitize=thread" --extra-ldflags="-fuse-ld=gold" || { cat config.log && exit 1; }
318
319
320 # Run check-tcg against linux-user
321 - name: "GCC check-tcg (user)"
322 env:
323 - CONFIG="--disable-system --enable-debug-tcg"
324 - TEST_BUILD_CMD="make build-tcg"
325 - TEST_CMD="make check-tcg"
326 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
327
328
329 # Run check-tcg against linux-user (with plugins)
330 # we skip sparc64-linux-user until it has been fixed somewhat
331 # we skip cris-linux-user as it doesn't use the common run loop
332 - name: "GCC plugins check-tcg (user)"
333 env:
334 - CONFIG="--disable-system --enable-plugins --enable-debug-tcg --target-list-exclude=sparc64-linux-user,cris-linux-user"
335 - TEST_BUILD_CMD="make build-tcg"
336 - TEST_CMD="make check-tcg"
337 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
338
339
340 # Run check-tcg against softmmu targets
341 - name: "GCC check-tcg (some-softmmu)"
342 env:
343 - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
344 - TEST_BUILD_CMD="make build-tcg"
345 - TEST_CMD="make check-tcg"
346 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
347
348
349 # Run check-tcg against softmmu targets (with plugins)
350 - name: "GCC plugins check-tcg (some-softmmu)"
351 env:
352 - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
353 - TEST_BUILD_CMD="make build-tcg"
354 - TEST_CMD="make check-tcg"
355 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
356
357 - name: "[aarch64] GCC check-tcg"
358 arch: arm64
359 dist: xenial
360 addons:
361 apt_packages:
362 - libaio-dev
363 - libattr1-dev
364 - libbrlapi-dev
365 - libcap-ng-dev
366 - libgcrypt20-dev
367 - libgnutls28-dev
368 - libgtk-3-dev
369 - libiscsi-dev
370 - liblttng-ust-dev
371 - libncurses5-dev
372 - libnfs-dev
373 - libnss3-dev
374 - libpixman-1-dev
375 - libpng-dev
376 - librados-dev
377 - libsdl2-dev
378 - libseccomp-dev
379 - liburcu-dev
380 - libusb-1.0-0-dev
381 - libvdeplug-dev
382 - libvte-2.91-dev
383 # Tests dependencies
384 - genisoimage
385 env:
386 - TEST_CMD="make check check-tcg V=1"
387 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS}"
388 - UNRELIABLE=true
389
390 - name: "[ppc64] GCC check-tcg"
391 arch: ppc64le
392 dist: xenial
393 addons:
394 apt_packages:
395 - libaio-dev
396 - libattr1-dev
397 - libbrlapi-dev
398 - libcap-ng-dev
399 - libgcrypt20-dev
400 - libgnutls28-dev
401 - libgtk-3-dev
402 - libiscsi-dev
403 - liblttng-ust-dev
404 - libncurses5-dev
405 - libnfs-dev
406 - libnss3-dev
407 - libpixman-1-dev
408 - libpng-dev
409 - librados-dev
410 - libsdl2-dev
411 - libseccomp-dev
412 - liburcu-dev
413 - libusb-1.0-0-dev
414 - libvdeplug-dev
415 - libvte-2.91-dev
416 # Tests dependencies
417 - genisoimage
418 env:
419 - TEST_CMD="make check check-tcg V=1"
420 - CONFIG="--disable-containers --target-list=ppc64-softmmu,ppc64le-linux-user"
421
422 - name: "[s390x] GCC check-tcg"
423 arch: s390x
424 dist: bionic
425 addons:
426 apt_packages:
427 - libaio-dev
428 - libattr1-dev
429 - libbrlapi-dev
430 - libcap-ng-dev
431 - libgcrypt20-dev
432 - libgnutls28-dev
433 - libgtk-3-dev
434 - libiscsi-dev
435 - liblttng-ust-dev
436 - libncurses5-dev
437 - libnfs-dev
438 - libnss3-dev
439 - libpixman-1-dev
440 - libpng-dev
441 - librados-dev
442 - libsdl2-dev
443 - libseccomp-dev
444 - liburcu-dev
445 - libusb-1.0-0-dev
446 - libvdeplug-dev
447 - libvte-2.91-dev
448 # Tests dependencies
449 - genisoimage
450 env:
451 - TEST_CMD="make check check-tcg V=1"
452 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user"
453 - UNRELIABLE=true
454 script:
455 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
456 - |
457 if [ "$BUILD_RC" -eq 0 ] ; then
458 mv pc-bios/s390-ccw/*.img pc-bios/ ;
459 ${TEST_CMD} ;
460 else
461 $(exit $BUILD_RC);
462 fi
463
464 - name: "[s390x] GCC (other-softmmu)"
465 arch: s390x
466 dist: bionic
467 addons:
468 apt_packages:
469 - libaio-dev
470 - libattr1-dev
471 - libcap-ng-dev
472 - libgnutls28-dev
473 - libiscsi-dev
474 - liblttng-ust-dev
475 - liblzo2-dev
476 - libncurses-dev
477 - libnfs-dev
478 - libnss3-dev
479 - libpixman-1-dev
480 - libsdl2-dev
481 - libsdl2-image-dev
482 - libseccomp-dev
483 - libsnappy-dev
484 - libzstd-dev
485 - nettle-dev
486 - xfslibs-dev
487 # Tests dependencies
488 - genisoimage
489 env:
490 - CONFIG="--disable-containers --audio-drv-list=sdl --disable-user
491 --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
492
493 - name: "[s390x] GCC (user)"
494 arch: s390x
495 dist: bionic
496 addons:
497 apt_packages:
498 - libgcrypt20-dev
499 - libgnutls28-dev
500 env:
501 - CONFIG="--disable-containers --disable-system"
502
503 - name: "[s390x] Clang (disable-tcg)"
504 arch: s390x
505 dist: bionic
506 compiler: clang
507 addons:
508 apt_packages:
509 - libaio-dev
510 - libattr1-dev
511 - libbrlapi-dev
512 - libcap-ng-dev
513 - libgcrypt20-dev
514 - libgnutls28-dev
515 - libgtk-3-dev
516 - libiscsi-dev
517 - liblttng-ust-dev
518 - libncurses5-dev
519 - libnfs-dev
520 - libnss3-dev
521 - libpixman-1-dev
522 - libpng-dev
523 - librados-dev
524 - libsdl2-dev
525 - libseccomp-dev
526 - liburcu-dev
527 - libusb-1.0-0-dev
528 - libvdeplug-dev
529 - libvte-2.91-dev
530 env:
531 - TEST_CMD="make check-unit"
532 - CONFIG="--disable-containers --disable-tcg --enable-kvm
533 --disable-tools --host-cc=clang --cxx=clang++"
534 - UNRELIABLE=true
535
536 # Release builds
537 # The make-release script expect a QEMU version, so our tag must start with a 'v'.
538 # This is the case when release candidate tags are created.
539 - name: "Release tarball"
540 if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
541 env:
542 # We want to build from the release tarball
543 - BUILD_DIR="release/build/dir" SRC_DIR="../../.."
544 - BASE_CONFIG="--prefix=$PWD/dist"
545 - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user"
546 - TEST_CMD="make install -j${JOBS}"
547 - QEMU_VERSION="${TRAVIS_TAG:1}"
548 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
549 script:
550 - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2
551 - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2
552 - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION}
553 - mkdir -p release-build && cd release-build
554 - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
555 - make install
556 allow_failures:
557 - env: UNRELIABLE=true