qemu/.travis.yml
<<
>>
Prefs
   1# The current Travis default is a container based 14.04 Trust on EC2
   2# Additional builds with specific requirements for a full VM need to
   3# be added as additional matrix: entries later on
   4sudo: false
   5dist: trusty
   6language: c
   7python:
   8  - "2.6"
   9compiler:
  10  - gcc
  11cache: ccache
  12addons:
  13  apt:
  14    packages:
  15      # Build dependencies
  16      - libaio-dev
  17      - libattr1-dev
  18      - libbrlapi-dev
  19      - libcap-ng-dev
  20      - libgcc-4.8-dev
  21      - libgnutls-dev
  22      - libgtk-3-dev
  23      - libiscsi-dev
  24      - liblttng-ust-dev
  25      - libncurses5-dev
  26      - libnfs-dev
  27      - libnss3-dev
  28      - libpixman-1-dev
  29      - libpng12-dev
  30      - librados-dev
  31      - libsdl1.2-dev
  32      - libseccomp-dev
  33      - libspice-protocol-dev
  34      - libspice-server-dev
  35      - libssh2-1-dev
  36      - liburcu-dev
  37      - libusb-1.0-0-dev
  38      - libvte-2.90-dev
  39      - sparse
  40      - uuid-dev
  41      - gcovr
  42
  43# The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
  44# to prevent IRC notifications from forks. This was created using:
  45# $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
  46notifications:
  47  irc:
  48    channels:
  49      - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
  50    on_success: change
  51    on_failure: always
  52env:
  53  global:
  54    - SRC_DIR="."
  55    - BUILD_DIR="."
  56    - TEST_CMD="make check"
  57    - MAKEFLAGS="-j3"
  58  matrix:
  59    - CONFIG="--disable-system"
  60    - CONFIG="--disable-user"
  61    - CONFIG="--enable-debug --enable-debug-tcg"
  62    - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-uuid --disable-libusb --disable-user"
  63    - CONFIG="--enable-modules --disable-linux-user"
  64    - CONFIG="--with-coroutine=ucontext --disable-linux-user"
  65    - CONFIG="--with-coroutine=sigaltstack --disable-linux-user"
  66git:
  67  # we want to do this ourselves
  68  submodules: false
  69before_install:
  70  - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update ; fi
  71  - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install libffi gettext glib pixman ; fi
  72  - git submodule update --init --recursive capstone dtc ui/keycodemapdb
  73before_script:
  74  - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
  75  - ${SRC_DIR}/configure ${CONFIG} || { cat config.log && exit 1; }
  76script:
  77  - make ${MAKEFLAGS} && ${TEST_CMD}
  78matrix:
  79  include:
  80    # Test out-of-tree builds
  81    - env: CONFIG="--enable-debug --enable-debug-tcg"
  82           BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
  83    # Test with Clang for compile portability (Travis uses clang-5.0)
  84    - env: CONFIG="--disable-system"
  85      compiler: clang
  86    - env: CONFIG="--disable-user"
  87      compiler: clang
  88    # gprof/gcov are GCC features
  89    - env: CONFIG="--enable-gprof --enable-gcov --disable-pie --target-list=aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
  90      after_success:
  91        - ${SRC_DIR}/scripts/travis/coverage-summary.sh
  92      compiler: gcc
  93    # We manually include builds which we disable "make check" for
  94    - env: CONFIG="--enable-debug --enable-tcg-interpreter"
  95           TEST_CMD=""
  96      compiler: gcc
  97    # We don't need to exercise every backend with every front-end
  98    - env: CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
  99           TEST_CMD=""
 100      compiler: gcc
 101    - env: CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
 102           TEST_CMD=""
 103      compiler: gcc
 104    - env: CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
 105           TEST_CMD=""
 106      compiler: gcc
 107    - env: CONFIG="--disable-tcg"
 108           TEST_CMD=""
 109      compiler: gcc
 110    - env: CONFIG=""
 111      os: osx
 112      compiler: clang
 113    # Python builds
 114    - env: CONFIG="--target-list=x86_64-softmmu"
 115      python:
 116        - "3.0"
 117    - env: CONFIG="--target-list=x86_64-softmmu"
 118      python:
 119        - "3.6"
 120    # Using newer GCC with sanitizers
 121    - addons:
 122        apt:
 123          update: true
 124          sources:
 125            # PPAs for newer toolchains
 126            - ubuntu-toolchain-r-test
 127          packages:
 128            # Extra toolchains
 129            - gcc-7
 130            - g++-7
 131            # Build dependencies
 132            - libaio-dev
 133            - libattr1-dev
 134            - libbrlapi-dev
 135            - libcap-ng-dev
 136            - libgnutls-dev
 137            - libgtk-3-dev
 138            - libiscsi-dev
 139            - liblttng-ust-dev
 140            - libnfs-dev
 141            - libncurses5-dev
 142            - libnss3-dev
 143            - libpixman-1-dev
 144            - libpng12-dev
 145            - librados-dev
 146            - libsdl1.2-dev
 147            - libseccomp-dev
 148            - libspice-protocol-dev
 149            - libspice-server-dev
 150            - libssh2-1-dev
 151            - liburcu-dev
 152            - libusb-1.0-0-dev
 153            - libvte-2.90-dev
 154            - sparse
 155            - uuid-dev
 156      language: generic
 157      compiler: none
 158      env:
 159        - COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7
 160        - CONFIG="--cc=gcc-7 --cxx=g++-7 --disable-pie --disable-linux-user"
 161        - TEST_CMD=""
 162      before_script:
 163        - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || { cat config.log && exit 1; }
 164    - env:
 165        - CONFIG="--disable-system --disable-docs"
 166        - TEST_CMD="make check-tcg"
 167      script:
 168        - make ${MAKEFLAGS} && ${TEST_CMD} ${MAKEFLAGS}
 169      sudo: required
 170      dist: trusty
 171      compiler: gcc
 172