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 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 22addons: 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" 62notifications: 63 irc: 64 channels: 65 - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM=" 66 on_success: change 67 on_failure: always 68 69 70env: 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 84git: 85 # we want to do this ourselves 86 submodules: false 87 88# Common first phase for all steps 89before_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 95before_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 100script: 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 114after_script: 115 - df -h 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 # Python builds 274 - name: "GCC Python 3.5 (x86_64-softmmu)" 275 env: 276 - CONFIG="--target-list=x86_64-softmmu" 277 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" 278 language: python 279 python: 3.5 280 281 282 - name: "GCC Python 3.6 (x86_64-softmmu)" 283 env: 284 - CONFIG="--target-list=x86_64-softmmu" 285 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" 286 language: python 287 python: 3.6 288 289 290 # Acceptance (Functional) tests 291 - name: "GCC check-acceptance" 292 dist: bionic 293 env: 294 - 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" 295 - TEST_CMD="make check-acceptance" 296 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-acceptance" 297 after_script: 298 - 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 299 - du -chs $HOME/avocado/data/cache 300 addons: 301 apt: 302 packages: 303 - python3-pil 304 - python3-pip 305 - python3-numpy 306 - python3-opencv 307 - python3-venv 308 - rpm2cpio 309 - tesseract-ocr 310 - tesseract-ocr-eng 311 312 313 # Using newer GCC with sanitizers 314 - name: "GCC9 with sanitizers (softmmu)" 315 addons: 316 apt: 317 update: true 318 sources: 319 # PPAs for newer toolchains 320 - ubuntu-toolchain-r-test 321 packages: 322 # Extra toolchains 323 - gcc-9 324 - g++-9 325 # Build dependencies 326 - libaio-dev 327 - libattr1-dev 328 - libbrlapi-dev 329 - libcap-ng-dev 330 - libgnutls-dev 331 - libgtk-3-dev 332 - libiscsi-dev 333 - liblttng-ust-dev 334 - libnfs-dev 335 - libncurses5-dev 336 - libnss3-dev 337 - libpixman-1-dev 338 - libpng12-dev 339 - librados-dev 340 - libsdl2-dev 341 - libsdl2-image-dev 342 - libseccomp-dev 343 - libspice-protocol-dev 344 - libspice-server-dev 345 - libssh-dev 346 - liburcu-dev 347 - libusb-1.0-0-dev 348 - libvte-2.91-dev 349 - sparse 350 - uuid-dev 351 language: generic 352 compiler: none 353 env: 354 - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9 355 - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-pie --disable-linux-user" 356 - TEST_CMD="" 357 before_script: 358 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR} 359 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-g3 -O0 -Wno-error=stringop-truncation -fsanitize=thread" --extra-ldflags="-fuse-ld=gold" || { cat config.log && exit 1; } 360 361 362 # Run check-tcg against linux-user 363 - name: "GCC check-tcg (user)" 364 env: 365 - CONFIG="--disable-system --enable-debug-tcg" 366 - TEST_BUILD_CMD="make build-tcg" 367 - TEST_CMD="make check-tcg" 368 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" 369 370 371 # Run check-tcg against linux-user (with plugins) 372 # we skip sparc64-linux-user until it has been fixed somewhat 373 # we skip cris-linux-user as it doesn't use the common run loop 374 - name: "GCC plugins check-tcg (user)" 375 env: 376 - CONFIG="--disable-system --enable-plugins --enable-debug-tcg --target-list-exclude=sparc64-linux-user,cris-linux-user" 377 - TEST_BUILD_CMD="make build-tcg" 378 - TEST_CMD="make check-tcg" 379 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" 380 381 382 # Run check-tcg against softmmu targets 383 - name: "GCC check-tcg (some-softmmu)" 384 env: 385 - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu" 386 - TEST_BUILD_CMD="make build-tcg" 387 - TEST_CMD="make check-tcg" 388 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" 389 390 391 # Run check-tcg against softmmu targets (with plugins) 392 - name: "GCC plugins check-tcg (some-softmmu)" 393 env: 394 - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu" 395 - TEST_BUILD_CMD="make build-tcg" 396 - TEST_CMD="make check-tcg" 397 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" 398 399 - name: "[aarch64] GCC check-tcg" 400 arch: arm64 401 dist: xenial 402 addons: 403 apt_packages: 404 - libaio-dev 405 - libattr1-dev 406 - libbrlapi-dev 407 - libcap-ng-dev 408 - libgcrypt20-dev 409 - libgnutls28-dev 410 - libgtk-3-dev 411 - libiscsi-dev 412 - liblttng-ust-dev 413 - libncurses5-dev 414 - libnfs-dev 415 - libnss3-dev 416 - libpixman-1-dev 417 - libpng-dev 418 - librados-dev 419 - libsdl2-dev 420 - libseccomp-dev 421 - liburcu-dev 422 - libusb-1.0-0-dev 423 - libvdeplug-dev 424 - libvte-2.91-dev 425 # Tests dependencies 426 - genisoimage 427 env: 428 - TEST_CMD="make check check-tcg V=1" 429 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS}" 430 431 - name: "[ppc64] GCC check-tcg" 432 arch: ppc64le 433 dist: xenial 434 addons: 435 apt_packages: 436 - libaio-dev 437 - libattr1-dev 438 - libbrlapi-dev 439 - libcap-ng-dev 440 - libgcrypt20-dev 441 - libgnutls28-dev 442 - libgtk-3-dev 443 - libiscsi-dev 444 - liblttng-ust-dev 445 - libncurses5-dev 446 - libnfs-dev 447 - libnss3-dev 448 - libpixman-1-dev 449 - libpng-dev 450 - librados-dev 451 - libsdl2-dev 452 - libseccomp-dev 453 - liburcu-dev 454 - libusb-1.0-0-dev 455 - libvdeplug-dev 456 - libvte-2.91-dev 457 # Tests dependencies 458 - genisoimage 459 env: 460 - TEST_CMD="make check check-tcg V=1" 461 - CONFIG="--disable-containers --target-list=ppc64-softmmu,ppc64le-linux-user" 462 463 - name: "[s390x] GCC check-tcg" 464 arch: s390x 465 dist: bionic 466 addons: 467 apt_packages: 468 - libaio-dev 469 - libattr1-dev 470 - libbrlapi-dev 471 - libcap-ng-dev 472 - libgcrypt20-dev 473 - libgnutls28-dev 474 - libgtk-3-dev 475 - libiscsi-dev 476 - liblttng-ust-dev 477 - libncurses5-dev 478 - libnfs-dev 479 - libnss3-dev 480 - libpixman-1-dev 481 - libpng-dev 482 - librados-dev 483 - libsdl2-dev 484 - libseccomp-dev 485 - liburcu-dev 486 - libusb-1.0-0-dev 487 - libvdeplug-dev 488 - libvte-2.91-dev 489 # Tests dependencies 490 - genisoimage 491 env: 492 - TEST_CMD="make check check-tcg V=1" 493 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user" 494 script: 495 - ( cd ${SRC_DIR} ; git submodule update --init roms/SLOF ) 496 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$? 497 - | 498 if [ "$BUILD_RC" -eq 0 ] ; then 499 mv pc-bios/s390-ccw/*.img pc-bios/ ; 500 ${TEST_CMD} ; 501 else 502 $(exit $BUILD_RC); 503 fi 504 505 - name: "[s390x] Clang (disable-tcg)" 506 arch: s390x 507 dist: bionic 508 compiler: clang 509 addons: 510 apt_packages: 511 - libaio-dev 512 - libattr1-dev 513 - libbrlapi-dev 514 - libcap-ng-dev 515 - libgcrypt20-dev 516 - libgnutls28-dev 517 - libgtk-3-dev 518 - libiscsi-dev 519 - liblttng-ust-dev 520 - libncurses5-dev 521 - libnfs-dev 522 - libnss3-dev 523 - libpixman-1-dev 524 - libpng-dev 525 - librados-dev 526 - libsdl2-dev 527 - libseccomp-dev 528 - liburcu-dev 529 - libusb-1.0-0-dev 530 - libvdeplug-dev 531 - libvte-2.91-dev 532 env: 533 - TEST_CMD="make check-unit" 534 - CONFIG="--disable-containers --disable-tcg --enable-kvm 535 --disable-tools --host-cc=clang --cxx=clang++" 536 537 # Release builds 538 # The make-release script expect a QEMU version, so our tag must start with a 'v'. 539 # This is the case when release candidate tags are created. 540 - name: "Release tarball" 541 if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/ 542 env: 543 # We want to build from the release tarball 544 - BUILD_DIR="release/build/dir" SRC_DIR="../../.." 545 - BASE_CONFIG="--prefix=$PWD/dist" 546 - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user" 547 - TEST_CMD="make install -j${JOBS}" 548 - QEMU_VERSION="${TRAVIS_TAG:1}" 549 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" 550 script: 551 - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2 552 - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 553 - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION} 554 - mkdir -p release-build && cd release-build 555 - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; } 556 - make install 557