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