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    # MacOSX builds
 111    - env: CONFIG="--target-list=aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
 112      os: osx
 113      osx_image: xcode9.4
 114      compiler: clang
 115    - env: CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
 116      os: osx
 117      osx_image: xcode10
 118      compiler: clang
 119    # Python builds
 120    - env: CONFIG="--target-list=x86_64-softmmu"
 121      python:
 122        - "3.0"
 123    - env: CONFIG="--target-list=x86_64-softmmu"
 124      python:
 125        - "3.6"
 126    # Acceptance (Functional) tests
 127    - env: CONFIG="--python=/usr/bin/python3 --target-list=x86_64-softmmu"
 128           TEST_CMD="make AVOCADO_SHOW=app check-acceptance"
 129      addons:
 130        apt:
 131          packages:
 132            - python3-pip
 133            - python3.4-venv
 134    # Using newer GCC with sanitizers
 135    - addons:
 136        apt:
 137          update: true
 138          sources:
 139            # PPAs for newer toolchains
 140            - ubuntu-toolchain-r-test
 141          packages:
 142            # Extra toolchains
 143            - gcc-7
 144            - g++-7
 145            # Build dependencies
 146            - libaio-dev
 147            - libattr1-dev
 148            - libbrlapi-dev
 149            - libcap-ng-dev
 150            - libgnutls-dev
 151            - libgtk-3-dev
 152            - libiscsi-dev
 153            - liblttng-ust-dev
 154            - libnfs-dev
 155            - libncurses5-dev
 156            - libnss3-dev
 157            - libpixman-1-dev
 158            - libpng12-dev
 159            - librados-dev
 160            - libsdl1.2-dev
 161            - libseccomp-dev
 162            - libspice-protocol-dev
 163            - libspice-server-dev
 164            - libssh2-1-dev
 165            - liburcu-dev
 166            - libusb-1.0-0-dev
 167            - libvte-2.90-dev
 168            - sparse
 169            - uuid-dev
 170      language: generic
 171      compiler: none
 172      env:
 173        - COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7
 174        - CONFIG="--cc=gcc-7 --cxx=g++-7 --disable-pie --disable-linux-user"
 175        - TEST_CMD=""
 176      before_script:
 177        - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || { cat config.log && exit 1; }
 178    - env:
 179        - CONFIG="--disable-system --disable-docs"
 180        - TEST_CMD="make check-tcg"
 181      script:
 182        - make ${MAKEFLAGS} && ${TEST_CMD} ${MAKEFLAGS}
 183      sudo: required
 184      dist: trusty
 185      compiler: gcc
 186