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 4dist: xenial 5language: c 6compiler: 7 - gcc 8cache: ccache 9 10 11addons: 12 apt: 13 packages: 14 # Build dependencies 15 - libaio-dev 16 - libattr1-dev 17 - libbrlapi-dev 18 - libcap-ng-dev 19 - libgcc-4.8-dev 20 - libgnutls-dev 21 - libgtk-3-dev 22 - libiscsi-dev 23 - liblttng-ust-dev 24 - libncurses5-dev 25 - libnfs-dev 26 - libnss3-dev 27 - libpixman-1-dev 28 - libpng12-dev 29 - librados-dev 30 - libsdl1.2-dev 31 - libseccomp-dev 32 - libspice-protocol-dev 33 - libspice-server-dev 34 - libssh2-1-dev 35 - liburcu-dev 36 - libusb-1.0-0-dev 37 - libvte-2.91-dev 38 - sparse 39 - uuid-dev 40 - gcovr 41 homebrew: 42 packages: 43 - libffi 44 - gettext 45 - glib 46 - pixman 47 48 49# The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu 50# to prevent IRC notifications from forks. This was created using: 51# $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu" 52notifications: 53 irc: 54 channels: 55 - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM=" 56 on_success: change 57 on_failure: always 58 59 60env: 61 global: 62 - SRC_DIR="." 63 - BUILD_DIR="." 64 - TEST_CMD="make check -j3 V=1" 65 66 67git: 68 # we want to do this ourselves 69 submodules: false 70 71 72before_script: 73 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR} 74 - ${SRC_DIR}/configure ${CONFIG} || { cat config.log && exit 1; } 75script: 76 - make -j3 && ${TEST_CMD} 77 78 79matrix: 80 include: 81 - env: 82 - CONFIG="--disable-system" 83 84 85 - env: 86 - CONFIG="--disable-user" 87 88 89 - env: 90 - CONFIG="--enable-debug --enable-debug-tcg" 91 92 93 - env: 94 - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-uuid --disable-libusb --disable-user" 95 96 97 - env: 98 - CONFIG="--enable-modules --disable-linux-user" 99 100 101 - env: 102 - CONFIG="--with-coroutine=ucontext --disable-linux-user" 103 104 105 - env: 106 - CONFIG="--with-coroutine=sigaltstack --disable-linux-user" 107 108 109 # Test out-of-tree builds 110 - env: 111 - CONFIG="--enable-debug --enable-debug-tcg" 112 - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.." 113 114 115 # Test with Clang for compile portability (Travis uses clang-5.0) 116 - env: 117 - CONFIG="--disable-system" 118 compiler: clang 119 120 121 - env: 122 - CONFIG="--disable-user" 123 compiler: clang 124 125 126 # gprof/gcov are GCC features 127 - env: 128 - 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" 129 after_success: 130 - ${SRC_DIR}/scripts/travis/coverage-summary.sh 131 132 133 # We manually include builds which we disable "make check" for 134 - env: 135 - CONFIG="--enable-debug --enable-tcg-interpreter" 136 - TEST_CMD="" 137 138 139 # We don't need to exercise every backend with every front-end 140 - env: 141 - CONFIG="--enable-trace-backends=log,simple,syslog --disable-system" 142 - TEST_CMD="" 143 144 145 - env: 146 - CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu" 147 - TEST_CMD="" 148 149 150 - env: 151 - CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu" 152 - TEST_CMD="" 153 154 155 - env: 156 - CONFIG="--disable-tcg" 157 - TEST_CMD="" 158 159 160 # MacOSX builds 161 - env: 162 - CONFIG="--target-list=aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu" 163 os: osx 164 osx_image: xcode9.4 165 compiler: clang 166 167 168 - env: 169 - CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu" 170 os: osx 171 osx_image: xcode10 172 compiler: clang 173 174 175 # Python builds 176 - env: 177 - CONFIG="--target-list=x86_64-softmmu" 178 language: python 179 python: 180 - "3.4" 181 182 183 - env: 184 - CONFIG="--target-list=x86_64-softmmu" 185 language: python 186 python: 187 - "3.6" 188 189 190 # Acceptance (Functional) tests 191 - env: 192 - CONFIG="--python=/usr/bin/python3 --target-list=x86_64-softmmu" 193 - TEST_CMD="make AVOCADO_SHOW=app check-acceptance" 194 addons: 195 apt: 196 packages: 197 - python3-pip 198 - python3.5-venv 199 # Using newer GCC with sanitizers 200 - addons: 201 apt: 202 update: true 203 sources: 204 # PPAs for newer toolchains 205 - ubuntu-toolchain-r-test 206 packages: 207 # Extra toolchains 208 - gcc-7 209 - g++-7 210 # Build dependencies 211 - libaio-dev 212 - libattr1-dev 213 - libbrlapi-dev 214 - libcap-ng-dev 215 - libgnutls-dev 216 - libgtk-3-dev 217 - libiscsi-dev 218 - liblttng-ust-dev 219 - libnfs-dev 220 - libncurses5-dev 221 - libnss3-dev 222 - libpixman-1-dev 223 - libpng12-dev 224 - librados-dev 225 - libsdl1.2-dev 226 - libseccomp-dev 227 - libspice-protocol-dev 228 - libspice-server-dev 229 - libssh2-1-dev 230 - liburcu-dev 231 - libusb-1.0-0-dev 232 - libvte-2.91-dev 233 - sparse 234 - uuid-dev 235 language: generic 236 compiler: none 237 env: 238 - COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7 239 - CONFIG="--cc=gcc-7 --cxx=g++-7 --disable-pie --disable-linux-user" 240 - TEST_CMD="" 241 before_script: 242 - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || { cat config.log && exit 1; } 243 244 245 - env: 246 - CONFIG="--disable-system --disable-docs" 247 - TEST_CMD="make -j3 check-tcg V=1" 248