.travis.yml 6.0 KB
Newer Older
1 2 3
# The current Travis default is a container based 14.04 Trust on EC2
# Additional builds with specific requirements for a full VM need to
# be added as additional matrix: entries later on
4
sudo: false
5
dist: trusty
6 7
language: c
python:
8
  - "2.6"
9 10
compiler:
  - gcc
11
cache: ccache
12 13 14
addons:
  apt:
    packages:
15
      # Build dependencies
16 17 18 19
      - libaio-dev
      - libattr1-dev
      - libbrlapi-dev
      - libcap-ng-dev
20
      - libgcc-4.8-dev
21 22 23 24 25
      - libgnutls-dev
      - libgtk-3-dev
      - libiscsi-dev
      - liblttng-ust-dev
      - libncurses5-dev
26
      - libnfs-dev
27 28 29 30 31 32 33 34 35 36 37 38 39 40
      - libnss3-dev
      - libpixman-1-dev
      - libpng12-dev
      - librados-dev
      - libsdl1.2-dev
      - libseccomp-dev
      - libspice-protocol-dev
      - libspice-server-dev
      - libssh2-1-dev
      - liburcu-dev
      - libusb-1.0-0-dev
      - libvte-2.90-dev
      - sparse
      - uuid-dev
41
      - gcovr
42

43 44 45
# 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"
46 47 48
notifications:
  irc:
    channels:
49
      - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
50 51
    on_success: change
    on_failure: always
52 53
env:
  global:
54 55
    - SRC_DIR="."
    - BUILD_DIR="."
56
    - TEST_CMD="make check"
57
    - MAKEFLAGS="-j3"
58
  matrix:
59 60
    - CONFIG="--disable-system"
    - 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 64 65
    - CONFIG="--enable-modules --disable-linux-user"
    - CONFIG="--with-coroutine=ucontext --disable-linux-user"
    - CONFIG="--with-coroutine=sigaltstack --disable-linux-user"
66 67 68
git:
  # we want to do this ourselves
  submodules: false
69
before_install:
A
Alex Bennée 已提交
70 71
  - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update ; fi
  - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install libffi gettext glib pixman ; fi
72
  - git submodule update --init --recursive capstone dtc ui/keycodemapdb
73
before_script:
74 75
  - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
  - ${SRC_DIR}/configure ${CONFIG} || { cat config.log && exit 1; }
76
script:
77
  - make ${MAKEFLAGS} && ${TEST_CMD}
78 79
matrix:
  include:
80 81 82
    # Test out-of-tree builds
    - env: CONFIG="--enable-debug --enable-debug-tcg"
           BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
83 84 85 86
    # Test with Clang for compile portability (Travis uses clang-5.0)
    - env: CONFIG="--disable-system"
      compiler: clang
    - 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 91
      after_success:
        - ${SRC_DIR}/scripts/travis/coverage-summary.sh
92
      compiler: gcc
93 94
    # We manually include builds which we disable "make check" for
    - env: CONFIG="--enable-debug --enable-tcg-interpreter"
95
           TEST_CMD=""
96
      compiler: gcc
97 98
    # We don't need to exercise every backend with every front-end
    - 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 106
           TEST_CMD=""
      compiler: gcc
P
Paolo Bonzini 已提交
107 108 109
    - env: CONFIG="--disable-tcg"
           TEST_CMD=""
      compiler: gcc
110 111
    # MacOSX builds
    - env: CONFIG="--target-list=aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
A
Alex Bennée 已提交
112
      os: osx
113 114 115 116 117
      osx_image: xcode9.4
      compiler: clang
    - env: CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
      os: osx
      osx_image: xcode10
A
Alex Bennée 已提交
118
      compiler: clang
119 120
    # Python builds
    - env: CONFIG="--target-list=x86_64-softmmu"
121 122
      python:
        - "3.0"
123
    - env: CONFIG="--target-list=x86_64-softmmu"
124 125
      python:
        - "3.6"
126 127 128 129 130 131 132 133
    # Acceptance (Functional) tests
    - env: CONFIG="--python=/usr/bin/python3 --target-list=x86_64-softmmu"
           TEST_CMD="make AVOCADO_SHOW=app check-acceptance"
      addons:
        apt:
          packages:
            - python3-pip
            - python3.4-venv
134 135 136
    # Using newer GCC with sanitizers
    - addons:
        apt:
137
          update: true
138 139 140 141 142
          sources:
            # PPAs for newer toolchains
            - ubuntu-toolchain-r-test
          packages:
            # Extra toolchains
143 144
            - gcc-7
            - g++-7
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
            # 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
            - libsdl1.2-dev
            - libseccomp-dev
            - libspice-protocol-dev
            - libspice-server-dev
            - libssh2-1-dev
            - liburcu-dev
            - libusb-1.0-0-dev
            - libvte-2.90-dev
            - sparse
            - uuid-dev
      language: generic
      compiler: none
      env:
173 174
        - COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7
        - CONFIG="--cc=gcc-7 --cxx=g++-7 --disable-pie --disable-linux-user"
175 176
        - TEST_CMD=""
      before_script:
177
        - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || { cat config.log && exit 1; }
A
Alex Bennée 已提交
178 179 180 181 182 183 184 185
    - env:
        - CONFIG="--disable-system --disable-docs"
        - TEST_CMD="make check-tcg"
      script:
        - make ${MAKEFLAGS} && ${TEST_CMD} ${MAKEFLAGS}
      sudo: required
      dist: trusty
      compiler: gcc