.travis.yml 17.5 KB
Newer Older
A
Alex Bennée 已提交
1 2 3
# The current Travis default is a VM based 16.04 Xenial on GCE
# Additional builds with specific requirements for a full VM need to
# be added as additional matrix: entries later on
4
os: linux
A
Alex Bennée 已提交
5
dist: xenial
6 7 8
language: c
compiler:
  - gcc
9
cache:
10 11
  # There is one cache per branch and compiler version.
  # characteristics of each job are used to identify the cache:
A
Alex Bennée 已提交
12
  # - OS name (currently only linux)
13 14
  # - OS distribution (for Linux, xenial, trusty, or precise)
  # - Names and values of visible environment variables set in .travis.yml or Settings panel
15
  timeout: 1200
16
  ccache: true
17
  pip: true
18 19
  directories:
  - $HOME/avocado/data/cache
20 21


22 23 24
addons:
  apt:
    packages:
25
      # Build dependencies
26 27 28 29
      - libaio-dev
      - libattr1-dev
      - libbrlapi-dev
      - libcap-ng-dev
30
      - libgcc-4.8-dev
31
      - libgnutls28-dev
32 33 34 35
      - libgtk-3-dev
      - libiscsi-dev
      - liblttng-ust-dev
      - libncurses5-dev
36
      - libnfs-dev
37 38
      - libnss3-dev
      - libpixman-1-dev
39
      - libpng-dev
40
      - librados-dev
41 42
      - libsdl2-dev
      - libsdl2-image-dev
43 44 45
      - libseccomp-dev
      - libspice-protocol-dev
      - libspice-server-dev
46
      - libssh-dev
47 48
      - liburcu-dev
      - libusb-1.0-0-dev
49
      - libvdeplug-dev
A
Alex Bennée 已提交
50
      - libvte-2.91-dev
51
      - libzstd-dev
52 53
      - sparse
      - uuid-dev
54
      - gcovr
55 56
      # Tests dependencies
      - genisoimage
57

58

59 60 61
# The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
# to prevent IRC notifications from forks. This was created using:
# $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
62 63 64
notifications:
  irc:
    channels:
65
      - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
66 67
    on_success: change
    on_failure: always
68 69


70 71
env:
  global:
P
Paolo Bonzini 已提交
72 73
    - SRC_DIR=".."
    - 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 80
    - CCACHE_SLOPPINESS="include_file_ctime,include_file_mtime"
    - CCACHE_MAXSIZE=1G
81
    - G_MESSAGES_DEBUG=error
82

83

84 85 86
git:
  # we want to do this ourselves
  submodules: false
87

88 89 90
# Common first phase for all steps
before_install:
  - if command -v ccache ; then ccache --zero-stats ; fi
91 92
  - export JOBS=$(($(getconf _NPROCESSORS_ONLN) + 1))
  - 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 104 105 106 107
  - |
    if [ "$BUILD_RC" -eq 0 ] && [ -n "$TEST_BUILD_CMD" ]; then
        ${TEST_BUILD_CMD} || BUILD_RC=$?
    else
        $(exit $BUILD_RC);
    fi
108 109 110 111 112 113
  - |
    if [ "$BUILD_RC" -eq 0 ] ; then
        ${TEST_CMD} ;
    else
        $(exit $BUILD_RC);
    fi
114
after_script:
115
  - df -h
T
Thomas Huth 已提交
116
  - if command -v ccache ; then ccache --show-stats ; fi
117 118


119
jobs:
120
  include:
121 122
    - name: "GCC static (user)"
      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 129
    - name: "GCC (main-softmmu)"
      env:
130
        - CONFIG="--disable-user --target-list=${MAIN_SOFTMMU_TARGETS}"
131
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
132 133


134 135 136
    - name: "GCC (other-softmmu)"
      env:
       - 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 142
    - name: "GCC check-softfloat (user)"
      env:
143 144
        - BASE_CONFIG="--enable-tools"
        - CONFIG="--disable-user --disable-system"
145
        - TEST_CMD="make check-unit check-softfloat -j${JOBS}"
146 147
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"

148

149
    # --enable-debug implies --enable-debug-tcg, also runs quite a bit slower
150 151
    - name: "GCC debug (main-softmmu)"
      env:
152
        - CONFIG="--enable-debug --target-list=${MAIN_SOFTMMU_TARGETS}"
153
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug"
A
Alex Bennée 已提交
154 155


156
    # TCG debug can be run just on its own and is mostly agnostic to user/softmmu distinctions
157 158
    - name: "GCC debug (user)"
      env:
A
Alex Bennée 已提交
159
        - CONFIG="--enable-debug-tcg --disable-system"
160
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
161 162


163 164
    - name: "GCC some libs disabled (main-softmmu)"
      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 170
    - name: "GCC modules (main-softmmu)"
      env:
171
        - CONFIG="--enable-modules --target-list=${MAIN_SOFTMMU_TARGETS}"
172
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
173 174


175 176
    # Alternate coroutines implementations are only really of interest to KVM users
    # However we can't test against KVM on Travis so we can only run unit tests
177 178
    - name: "check-unit coroutine=ucontext"
      env:
179
        - CONFIG="--with-coroutine=ucontext --disable-tcg"
180
        - TEST_CMD="make check-unit -j${JOBS} V=1"
181 182


183 184
    - name: "check-unit coroutine=sigaltstack"
      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 191
    - name: "tools and docs (bionic)"
      dist: bionic
192
      env:
193
        - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
194 195
        - BASE_CONFIG="--enable-tools --enable-docs"
        - CONFIG="--target-list=x86_64-softmmu,aarch64-linux-user"
196
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
197 198 199
      addons:
        apt:
          packages:
200
            - python3-sphinx
201 202 203
            - texinfo
            - perl

204

205
    # Test with Clang for compile portability (Travis uses clang-5.0)
206 207
    - name: "Clang (user)"
      env:
208
        - CONFIG="--disable-system --host-cc=clang --cxx=clang++"
209
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
210
      compiler: clang
211 212


213 214
    - name: "Clang (main-softmmu)"
      env:
215 216
        - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS}
                  --host-cc=clang --cxx=clang++"
217
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-sanitize"
A
Alex Bennée 已提交
218 219
      compiler: clang
      before_script:
P
Paolo Bonzini 已提交
220 221
        - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
        - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-fsanitize=undefined -Werror" || { cat config.log && exit 1; }
A
Alex Bennée 已提交
222 223


224 225
    - name: "Clang (other-softmmu)"
      env:
226 227
        - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}
                  --host-cc=clang --cxx=clang++"
228
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
229
      compiler: clang
230 231


232
    # gprof/gcov are GCC features
233 234
    - name: "GCC gprof/gcov"
      env:
235
        - CONFIG="--enable-gprof --enable-gcov --disable-pie --target-list=${MAIN_SOFTMMU_TARGETS}"
236 237
      after_success:
        - ${SRC_DIR}/scripts/travis/coverage-summary.sh
238 239


240
    # We manually include builds which we disable "make check" for
241 242
    - name: "GCC without-default-devices (softmmu)"
      env:
243
        - CONFIG="--without-default-devices --disable-user"
244
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
245 246 247
        - TEST_CMD=""


T
Thomas Huth 已提交
248
    # Check the TCG interpreter (TCI)
249 250
    - name: "GCC TCI"
      env:
T
Thomas Huth 已提交
251 252 253
        - CONFIG="--enable-debug-tcg --enable-tcg-interpreter --disable-kvm --disable-containers
            --target-list=alpha-softmmu,arm-softmmu,hppa-softmmu,m68k-softmmu,microblaze-softmmu,moxie-softmmu,ppc-softmmu,s390x-softmmu,x86_64-softmmu"
        - TEST_CMD="make check-qtest check-tcg V=1"
254 255


256
    # We don't need to exercise every backend with every front-end
257 258
    - name: "GCC trace log,simple,syslog (user)"
      env:
259 260
        - CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
        - TEST_CMD=""
261 262


263 264
    - name: "GCC trace ftrace (x86_64-softmmu)"
      env:
265 266
        - CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
        - TEST_CMD=""
267 268


269 270
    - name: "GCC trace ust (x86_64-softmmu)"
      env:
271 272
        - CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
        - TEST_CMD=""
273 274


275
    # Python builds
276 277
    - name: "GCC Python 3.5 (x86_64-softmmu)"
      env:
278
        - CONFIG="--target-list=x86_64-softmmu"
279
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
280
      language: python
281
      python: 3.5
282 283


284 285
    - name: "GCC Python 3.6 (x86_64-softmmu)"
      env:
286
        - CONFIG="--target-list=x86_64-softmmu"
287
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
288
      language: python
289
      python: 3.6
290 291


292
    # Acceptance (Functional) tests
293
    - name: "GCC check-acceptance"
294
      dist: bionic
295
      env:
296
        - 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,sh4-softmmu,sparc-softmmu,x86_64-softmmu,xtensa-softmmu"
297
        - TEST_CMD="make check-acceptance"
298
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-acceptance"
299 300
      after_script:
        - 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
301
        - du -chs $HOME/avocado/data/cache
302 303 304
      addons:
        apt:
          packages:
305
            - python3-pil
306
            - python3-pip
307 308 309
            - python3-numpy
            - python3-opencv
            - python3-venv
310
            - rpm2cpio
311 312 313 314
            - tesseract-ocr
            - tesseract-ocr-eng


315
    # Using newer GCC with sanitizers
316 317
    - name: "GCC9 with sanitizers (softmmu)"
      addons:
318
        apt:
319
          update: true
320 321 322 323 324
          sources:
            # PPAs for newer toolchains
            - ubuntu-toolchain-r-test
          packages:
            # Extra toolchains
325 326
            - gcc-9
            - g++-9
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
            # Build dependencies
            - libaio-dev
            - libattr1-dev
            - libbrlapi-dev
            - libcap-ng-dev
            - libgnutls-dev
            - libgtk-3-dev
            - libiscsi-dev
            - liblttng-ust-dev
            - libnfs-dev
            - libncurses5-dev
            - libnss3-dev
            - libpixman-1-dev
            - libpng12-dev
            - librados-dev
342 343
            - libsdl2-dev
            - libsdl2-image-dev
344 345 346
            - libseccomp-dev
            - libspice-protocol-dev
            - libspice-server-dev
347
            - libssh-dev
348 349
            - liburcu-dev
            - libusb-1.0-0-dev
A
Alex Bennée 已提交
350
            - libvte-2.91-dev
351 352 353 354 355
            - sparse
            - uuid-dev
      language: generic
      compiler: none
      env:
356 357
        - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9
        - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-pie --disable-linux-user"
358 359
        - TEST_CMD=""
      before_script:
P
Paolo Bonzini 已提交
360
        - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
361
        - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-g3 -O0 -Wno-error=stringop-truncation -fsanitize=thread" --extra-ldflags="-fuse-ld=gold" || { cat config.log && exit 1; }
362 363


364
    # Run check-tcg against linux-user
365 366
    - name: "GCC check-tcg (user)"
      env:
367
        - CONFIG="--disable-system --enable-debug-tcg"
368
        - TEST_BUILD_CMD="make build-tcg"
369
        - TEST_CMD="make check-tcg"
370
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
371

372

373 374
    # Run check-tcg against linux-user (with plugins)
    # we skip sparc64-linux-user until it has been fixed somewhat
375
    # we skip cris-linux-user as it doesn't use the common run loop
376 377
    - name: "GCC plugins check-tcg (user)"
      env:
378
        - CONFIG="--disable-system --enable-plugins --enable-debug-tcg --target-list-exclude=sparc64-linux-user,cris-linux-user"
379
        - TEST_BUILD_CMD="make build-tcg"
380
        - TEST_CMD="make check-tcg"
381
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
382

383 384

    # Run check-tcg against softmmu targets
385 386
    - name: "GCC check-tcg (some-softmmu)"
      env:
387
        - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
388
        - TEST_BUILD_CMD="make build-tcg"
389
        - TEST_CMD="make check-tcg"
390
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
391 392


393
    # Run check-tcg against softmmu targets (with plugins)
394 395
    - name: "GCC plugins check-tcg (some-softmmu)"
      env:
396
        - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
397
        - TEST_BUILD_CMD="make build-tcg"
398
        - TEST_CMD="make check-tcg"
399
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
400

401 402
    - name: "[aarch64] GCC check-tcg"
      arch: arm64
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
      dist: xenial
      addons:
        apt_packages:
          - libaio-dev
          - libattr1-dev
          - libbrlapi-dev
          - libcap-ng-dev
          - libgcrypt20-dev
          - libgnutls28-dev
          - libgtk-3-dev
          - libiscsi-dev
          - liblttng-ust-dev
          - libncurses5-dev
          - libnfs-dev
          - libnss3-dev
          - libpixman-1-dev
          - libpng-dev
          - librados-dev
          - libsdl2-dev
          - libseccomp-dev
          - liburcu-dev
          - libusb-1.0-0-dev
          - libvdeplug-dev
          - libvte-2.91-dev
427 428
          # Tests dependencies
          - genisoimage
429 430 431
      env:
        - TEST_CMD="make check check-tcg V=1"
        - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS}"
432
        - UNRELIABLE=true
433

434 435
    - name: "[ppc64] GCC check-tcg"
      arch: ppc64le
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
      dist: xenial
      addons:
        apt_packages:
          - libaio-dev
          - libattr1-dev
          - libbrlapi-dev
          - libcap-ng-dev
          - libgcrypt20-dev
          - libgnutls28-dev
          - libgtk-3-dev
          - libiscsi-dev
          - liblttng-ust-dev
          - libncurses5-dev
          - libnfs-dev
          - libnss3-dev
          - libpixman-1-dev
          - libpng-dev
          - librados-dev
          - libsdl2-dev
          - libseccomp-dev
          - liburcu-dev
          - libusb-1.0-0-dev
          - libvdeplug-dev
          - libvte-2.91-dev
460 461
          # Tests dependencies
          - genisoimage
462 463
      env:
        - TEST_CMD="make check check-tcg V=1"
464
        - CONFIG="--disable-containers --target-list=ppc64-softmmu,ppc64le-linux-user"
465

466 467
    - name: "[s390x] GCC check-tcg"
      arch: s390x
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
      dist: bionic
      addons:
        apt_packages:
          - libaio-dev
          - libattr1-dev
          - libbrlapi-dev
          - libcap-ng-dev
          - libgcrypt20-dev
          - libgnutls28-dev
          - libgtk-3-dev
          - libiscsi-dev
          - liblttng-ust-dev
          - libncurses5-dev
          - libnfs-dev
          - libnss3-dev
          - libpixman-1-dev
          - libpng-dev
          - librados-dev
          - libsdl2-dev
          - libseccomp-dev
          - liburcu-dev
          - libusb-1.0-0-dev
          - libvdeplug-dev
          - libvte-2.91-dev
492 493
          # Tests dependencies
          - genisoimage
494 495 496
      env:
        - TEST_CMD="make check check-tcg V=1"
        - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user"
497
        - UNRELIABLE=true
498 499 500 501 502 503 504 505 506
      script:
        - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
        - |
          if [ "$BUILD_RC" -eq 0 ] ; then
              mv pc-bios/s390-ccw/*.img pc-bios/ ;
              ${TEST_CMD} ;
          else
              $(exit $BUILD_RC);
          fi
507

508
    - name: "[s390x] Clang (disable-tcg)"
509 510
      arch: s390x
      dist: bionic
511
      compiler: clang
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
      addons:
        apt_packages:
          - libaio-dev
          - libattr1-dev
          - libbrlapi-dev
          - libcap-ng-dev
          - libgcrypt20-dev
          - libgnutls28-dev
          - libgtk-3-dev
          - libiscsi-dev
          - liblttng-ust-dev
          - libncurses5-dev
          - libnfs-dev
          - libnss3-dev
          - libpixman-1-dev
          - libpng-dev
          - librados-dev
          - libsdl2-dev
          - libseccomp-dev
          - liburcu-dev
          - libusb-1.0-0-dev
          - libvdeplug-dev
          - libvte-2.91-dev
      env:
        - TEST_CMD="make check-unit"
537 538
        - CONFIG="--disable-containers --disable-tcg --enable-kvm
                  --disable-tools --host-cc=clang --cxx=clang++"
539
        - UNRELIABLE=true
540

541 542 543
    # Release builds
    # The make-release script expect a QEMU version, so our tag must start with a 'v'.
    # This is the case when release candidate tags are created.
544 545
    - name: "Release tarball"
      if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
546 547 548 549 550
      env:
        # We want to build from the release tarball
        - BUILD_DIR="release/build/dir" SRC_DIR="../../.."
        - BASE_CONFIG="--prefix=$PWD/dist"
        - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user"
551
        - TEST_CMD="make install -j${JOBS}"
552 553 554 555 556 557
        - QEMU_VERSION="${TRAVIS_TAG:1}"
        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
      script:
        - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2
        - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2
        - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION}
P
Paolo Bonzini 已提交
558 559
        - mkdir -p release-build && cd release-build
        - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
560
        - make install
561 562
  allow_failures:
    - env: UNRELIABLE=true