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: focal 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, 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 22addons: 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 - ninja-build 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 meson-logs/meson-log.txt && 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 - df -h 117 - if command -v ccache ; then ccache --show-stats ; fi 118 119 120jobs: 121 include: 122 - name: "GCC static (user)" 123 env: 124 - CONFIG="--disable-system --static" 125 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" 126 127 # Just build tools and run minimal unit and softfloat checks 128 - name: "GCC check-unit and check-softfloat" 129 env: 130 - BASE_CONFIG="--enable-tools" 131 - CONFIG="--disable-user --disable-system" 132 - TEST_CMD="make check-unit check-softfloat -j${JOBS}" 133 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" 134 135 136 # --enable-debug implies --enable-debug-tcg, also runs quite a bit slower 137 - name: "GCC debug (main-softmmu)" 138 env: 139 - CONFIG="--enable-debug --target-list=${MAIN_SOFTMMU_TARGETS}" 140 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug" 141 142 143 # TCG debug can be run just on its own and is mostly agnostic to user/softmmu distinctions 144 - name: "GCC debug (user)" 145 env: 146 - CONFIG="--enable-debug-tcg --disable-system" 147 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" 148 149 # Module builds are mostly of interest to major distros 150 - name: "GCC modules (main-softmmu)" 151 env: 152 - CONFIG="--enable-modules --target-list=${MAIN_SOFTMMU_TARGETS}" 153 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" 154 155 156 # Alternate coroutines implementations are only really of interest to KVM users 157 # However we can't test against KVM on Travis so we can only run unit tests 158 - name: "check-unit coroutine=ucontext" 159 env: 160 - CONFIG="--with-coroutine=ucontext --disable-tcg" 161 - TEST_CMD="make check-unit -j${JOBS} V=1" 162 163 164 - name: "check-unit coroutine=sigaltstack" 165 env: 166 - CONFIG="--with-coroutine=sigaltstack --disable-tcg" 167 - TEST_CMD="make check-unit -j${JOBS} V=1" 168 169 170 # Check we can build docs and tools (out of tree) 171 - name: "tools and docs (bionic)" 172 dist: bionic 173 env: 174 - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.." 175 - BASE_CONFIG="--enable-tools --enable-docs" 176 - CONFIG="--target-list=x86_64-softmmu,aarch64-linux-user" 177 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" 178 addons: 179 apt: 180 packages: 181 - ninja-build 182 - python3-sphinx 183 - perl 184 185 186 # Test with Clang for compile portability (Travis uses clang-5.0) 187 - name: "Clang (user)" 188 env: 189 - CONFIG="--disable-system --host-cc=clang --cxx=clang++" 190 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default" 191 compiler: clang 192 193 194 - name: "Clang (main-softmmu)" 195 env: 196 - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS} 197 --host-cc=clang --cxx=clang++" 198 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-sanitize" 199 compiler: clang 200 before_script: 201 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR} 202 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-fsanitize=undefined -Werror" || { cat config.log meson-logs/meson-log.txt && exit 1; } 203 204 205 - name: "Clang (other-softmmu)" 206 env: 207 - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS} 208 --host-cc=clang --cxx=clang++" 209 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default" 210 compiler: clang 211 212 213 # gprof/gcov are GCC features 214 - name: "GCC gprof/gcov" 215 dist: bionic 216 addons: 217 apt: 218 packages: 219 - ninja-build 220 env: 221 - CONFIG="--enable-gprof --enable-gcov --disable-libssh 222 --target-list=${MAIN_SOFTMMU_TARGETS}" 223 after_success: 224 - ${SRC_DIR}/scripts/travis/coverage-summary.sh 225 226 227 # We manually include builds which we disable "make check" for 228 - name: "GCC without-default-devices (softmmu)" 229 env: 230 - CONFIG="--without-default-devices --disable-user" 231 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" 232 - TEST_CMD="" 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 # Using newer GCC with sanitizers 255 - name: "GCC9 with sanitizers (softmmu)" 256 dist: bionic 257 addons: 258 apt: 259 update: true 260 sources: 261 # PPAs for newer toolchains 262 - ubuntu-toolchain-r-test 263 packages: 264 # Extra toolchains 265 - gcc-9 266 - g++-9 267 # Build dependencies 268 - libaio-dev 269 - libattr1-dev 270 - libbrlapi-dev 271 - libcap-ng-dev 272 - libgnutls28-dev 273 - libgtk-3-dev 274 - libiscsi-dev 275 - liblttng-ust-dev 276 - libnfs-dev 277 - libncurses5-dev 278 - libnss3-dev 279 - libpixman-1-dev 280 - libpng-dev 281 - librados-dev 282 - libsdl2-dev 283 - libsdl2-image-dev 284 - libseccomp-dev 285 - libspice-protocol-dev 286 - libspice-server-dev 287 - liburcu-dev 288 - libusb-1.0-0-dev 289 - libvte-2.91-dev 290 - ninja-build 291 - sparse 292 - uuid-dev 293 language: generic 294 compiler: none 295 env: 296 - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9 297 - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-linux-user" 298 - TEST_CMD="" 299 before_script: 300 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR} 301 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread" || { cat config.log meson-logs/meson-log.txt && exit 1; } 302 303 304 # Run check-tcg against linux-user 305 - name: "GCC check-tcg (user)" 306 env: 307 - CONFIG="--disable-system --enable-debug-tcg" 308 - TEST_BUILD_CMD="make build-tcg" 309 - TEST_CMD="make check-tcg" 310 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" 311 312 313 # Run check-tcg against softmmu targets 314 - name: "GCC check-tcg (some-softmmu)" 315 env: 316 - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu" 317 - TEST_BUILD_CMD="make build-tcg" 318 - TEST_CMD="make check-tcg" 319 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" 320 321 322 # Run check-tcg against softmmu targets (with plugins) 323 - name: "GCC plugins check-tcg (some-softmmu)" 324 env: 325 - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu" 326 - TEST_BUILD_CMD="make build-tcg" 327 - TEST_CMD="make check-tcg" 328 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" 329 330 - name: "[aarch64] GCC check-tcg" 331 arch: arm64 332 dist: focal 333 addons: 334 apt_packages: 335 - libaio-dev 336 - libattr1-dev 337 - libbrlapi-dev 338 - libcap-ng-dev 339 - libgcrypt20-dev 340 - libgnutls28-dev 341 - libgtk-3-dev 342 - libiscsi-dev 343 - liblttng-ust-dev 344 - libncurses5-dev 345 - libnfs-dev 346 - libnss3-dev 347 - libpixman-1-dev 348 - libpng-dev 349 - librados-dev 350 - libsdl2-dev 351 - libseccomp-dev 352 - liburcu-dev 353 - libusb-1.0-0-dev 354 - libvdeplug-dev 355 - libvte-2.91-dev 356 - ninja-build 357 # Tests dependencies 358 - genisoimage 359 env: 360 - TEST_CMD="make check check-tcg V=1" 361 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS}" 362 - UNRELIABLE=true 363 364 - name: "[ppc64] GCC check-tcg" 365 arch: ppc64le 366 dist: focal 367 addons: 368 apt_packages: 369 - libaio-dev 370 - libattr1-dev 371 - libbrlapi-dev 372 - libcap-ng-dev 373 - libgcrypt20-dev 374 - libgnutls28-dev 375 - libgtk-3-dev 376 - libiscsi-dev 377 - liblttng-ust-dev 378 - libncurses5-dev 379 - libnfs-dev 380 - libnss3-dev 381 - libpixman-1-dev 382 - libpng-dev 383 - librados-dev 384 - libsdl2-dev 385 - libseccomp-dev 386 - liburcu-dev 387 - libusb-1.0-0-dev 388 - libvdeplug-dev 389 - libvte-2.91-dev 390 - ninja-build 391 # Tests dependencies 392 - genisoimage 393 env: 394 - TEST_CMD="make check check-tcg V=1" 395 - CONFIG="--disable-containers --target-list=ppc64-softmmu,ppc64le-linux-user" 396 397 - name: "[s390x] GCC check-tcg" 398 arch: s390x 399 dist: bionic 400 addons: 401 apt_packages: 402 - libaio-dev 403 - libattr1-dev 404 - libbrlapi-dev 405 - libcap-ng-dev 406 - libgcrypt20-dev 407 - libgnutls28-dev 408 - libgtk-3-dev 409 - libiscsi-dev 410 - liblttng-ust-dev 411 - libncurses5-dev 412 - libnfs-dev 413 - libnss3-dev 414 - libpixman-1-dev 415 - libpng-dev 416 - librados-dev 417 - libsdl2-dev 418 - libseccomp-dev 419 - liburcu-dev 420 - libusb-1.0-0-dev 421 - libvdeplug-dev 422 - libvte-2.91-dev 423 - ninja-build 424 # Tests dependencies 425 - genisoimage 426 env: 427 - TEST_CMD="make check check-tcg V=1" 428 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user" 429 - UNRELIABLE=true 430 script: 431 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$? 432 - | 433 if [ "$BUILD_RC" -eq 0 ] ; then 434 mv pc-bios/s390-ccw/*.img pc-bios/ ; 435 ${TEST_CMD} ; 436 else 437 $(exit $BUILD_RC); 438 fi 439 440 - name: "[s390x] GCC (other-softmmu)" 441 arch: s390x 442 dist: bionic 443 addons: 444 apt_packages: 445 - libaio-dev 446 - libattr1-dev 447 - libcap-ng-dev 448 - libgnutls28-dev 449 - libiscsi-dev 450 - liblttng-ust-dev 451 - liblzo2-dev 452 - libncurses-dev 453 - libnfs-dev 454 - libnss3-dev 455 - libpixman-1-dev 456 - libsdl2-dev 457 - libsdl2-image-dev 458 - libseccomp-dev 459 - libsnappy-dev 460 - libzstd-dev 461 - nettle-dev 462 - xfslibs-dev 463 - ninja-build 464 # Tests dependencies 465 - genisoimage 466 env: 467 - CONFIG="--disable-containers --audio-drv-list=sdl --disable-user 468 --target-list-exclude=${MAIN_SOFTMMU_TARGETS}" 469 470 - name: "[s390x] GCC (user)" 471 arch: s390x 472 dist: bionic 473 addons: 474 apt_packages: 475 - libgcrypt20-dev 476 - libgnutls28-dev 477 - ninja-build 478 env: 479 - CONFIG="--disable-containers --disable-system" 480 481 - name: "[s390x] Clang (disable-tcg)" 482 arch: s390x 483 dist: bionic 484 compiler: clang 485 addons: 486 apt_packages: 487 - libaio-dev 488 - libattr1-dev 489 - libbrlapi-dev 490 - libcap-ng-dev 491 - libgcrypt20-dev 492 - libgnutls28-dev 493 - libgtk-3-dev 494 - libiscsi-dev 495 - liblttng-ust-dev 496 - libncurses5-dev 497 - libnfs-dev 498 - libnss3-dev 499 - libpixman-1-dev 500 - libpng-dev 501 - librados-dev 502 - libsdl2-dev 503 - libseccomp-dev 504 - liburcu-dev 505 - libusb-1.0-0-dev 506 - libvdeplug-dev 507 - libvte-2.91-dev 508 - ninja-build 509 env: 510 - TEST_CMD="make check-unit" 511 - CONFIG="--disable-containers --disable-tcg --enable-kvm 512 --disable-tools --host-cc=clang --cxx=clang++" 513 - UNRELIABLE=true 514 515 # Release builds 516 # The make-release script expect a QEMU version, so our tag must start with a 'v'. 517 # This is the case when release candidate tags are created. 518 - name: "Release tarball" 519 if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/ 520 env: 521 # We want to build from the release tarball 522 - BUILD_DIR="release/build/dir" SRC_DIR="../../.." 523 - BASE_CONFIG="--prefix=$PWD/dist" 524 - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user" 525 - TEST_CMD="make install -j${JOBS}" 526 - QEMU_VERSION="${TRAVIS_TAG:1}" 527 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" 528 script: 529 - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2 530 - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 531 - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION} 532 - mkdir -p release-build && cd release-build 533 - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log meson-logs/meson-log.txt && exit 1; } 534 - make install 535 allow_failures: 536 - env: UNRELIABLE=true 537