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
10 # There is one cache per branch and compiler version.
11 # characteristics of each job are used to identify the cache:
12 # - OS name (currently only linux)
13 # - OS distribution (for Linux, xenial, trusty, or precise)
14 # - Names and values of visible environment variables set in .travis.yml or Settings panel
19 - $HOME/avocado/data/cache
44 - libspice-protocol-dev
59 # The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
60 # to prevent IRC notifications from forks. This was created using:
61 # $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
65 - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
74 - BASE_CONFIG="--disable-docs --disable-tools"
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 - CCACHE_SLOPPINESS="include_file_ctime,include_file_mtime"
81 - G_MESSAGES_DEBUG=error
85 # we want to do this ourselves
88 # Common first phase for all steps
90 - if command -v ccache ; then ccache --zero-stats ; fi
91 - export JOBS=$(($(getconf _NPROCESSORS_ONLN) + 1))
92 - echo "=== Using ${JOBS} simultaneous jobs ==="
94 # Configure step - may be overridden
96 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
97 - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
99 # Main build & test - rarely overridden - controlled by TEST_CMD
101 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
103 if [ "$BUILD_RC" -eq 0 ] && [ -n "$TEST_BUILD_CMD" ]; then
104 ${TEST_BUILD_CMD} || BUILD_RC=$?
109 if [ "$BUILD_RC" -eq 0 ] ; then
116 - if command -v ccache ; then ccache --show-stats ; fi
121 - name: "GCC static (user)"
123 - CONFIG="--disable-system --static"
124 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
127 # we split the system builds as it takes a while to build them all
128 - name: "GCC (main-softmmu)"
130 - CONFIG="--disable-user --target-list=${MAIN_SOFTMMU_TARGETS}"
131 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
134 - name: "GCC (other-softmmu)"
136 - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
137 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
140 # Just build tools and run minimal unit and softfloat checks
141 - name: "GCC check-unit and check-softfloat"
143 - BASE_CONFIG="--enable-tools"
144 - CONFIG="--disable-user --disable-system"
145 - TEST_CMD="make check-unit check-softfloat -j${JOBS}"
146 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
149 # --enable-debug implies --enable-debug-tcg, also runs quite a bit slower
150 - name: "GCC debug (main-softmmu)"
152 - CONFIG="--enable-debug --target-list=${MAIN_SOFTMMU_TARGETS}"
153 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug"
156 # TCG debug can be run just on its own and is mostly agnostic to user/softmmu distinctions
157 - name: "GCC debug (user)"
159 - CONFIG="--enable-debug-tcg --disable-system"
160 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
162 # Module builds are mostly of interest to major distros
163 - name: "GCC modules (main-softmmu)"
165 - CONFIG="--enable-modules --target-list=${MAIN_SOFTMMU_TARGETS}"
166 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
169 # Alternate coroutines implementations are only really of interest to KVM users
170 # However we can't test against KVM on Travis so we can only run unit tests
171 - name: "check-unit coroutine=ucontext"
173 - CONFIG="--with-coroutine=ucontext --disable-tcg"
174 - TEST_CMD="make check-unit -j${JOBS} V=1"
177 - name: "check-unit coroutine=sigaltstack"
179 - CONFIG="--with-coroutine=sigaltstack --disable-tcg"
180 - TEST_CMD="make check-unit -j${JOBS} V=1"
183 # Check we can build docs and tools (out of tree)
184 - name: "tools and docs (bionic)"
187 - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
188 - BASE_CONFIG="--enable-tools --enable-docs"
189 - CONFIG="--target-list=x86_64-softmmu,aarch64-linux-user"
190 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
198 # Test with Clang for compile portability (Travis uses clang-5.0)
199 - name: "Clang (user)"
201 - CONFIG="--disable-system --host-cc=clang --cxx=clang++"
202 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
206 - name: "Clang (main-softmmu)"
208 - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS}
209 --host-cc=clang --cxx=clang++"
210 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-sanitize"
213 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
214 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-fsanitize=undefined -Werror" || { cat config.log && exit 1; }
217 - name: "Clang (other-softmmu)"
219 - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}
220 --host-cc=clang --cxx=clang++"
221 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
225 # gprof/gcov are GCC features
226 - name: "GCC gprof/gcov"
228 - CONFIG="--enable-gprof --enable-gcov --disable-pie --target-list=${MAIN_SOFTMMU_TARGETS}"
230 - ${SRC_DIR}/scripts/travis/coverage-summary.sh
233 # We manually include builds which we disable "make check" for
234 - name: "GCC without-default-devices (softmmu)"
236 - CONFIG="--without-default-devices --disable-user"
237 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
241 # Check the TCG interpreter (TCI)
244 - CONFIG="--enable-debug-tcg --enable-tcg-interpreter --disable-kvm --disable-containers
245 --target-list=alpha-softmmu,arm-softmmu,hppa-softmmu,m68k-softmmu,microblaze-softmmu,moxie-softmmu,ppc-softmmu,s390x-softmmu,x86_64-softmmu"
246 - TEST_CMD="make check-qtest check-tcg V=1"
249 # We don't need to exercise every backend with every front-end
250 - name: "GCC trace log,simple,syslog (user)"
252 - CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
256 - name: "GCC trace ftrace (x86_64-softmmu)"
258 - CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
262 - name: "GCC trace ust (x86_64-softmmu)"
264 - CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
269 - name: "GCC Python 3.5 (x86_64-softmmu)"
271 - CONFIG="--target-list=x86_64-softmmu"
272 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
277 - name: "GCC Python 3.6 (x86_64-softmmu)"
279 - CONFIG="--target-list=x86_64-softmmu"
280 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
285 # Using newer GCC with sanitizers
286 - name: "GCC9 with sanitizers (softmmu)"
291 # PPAs for newer toolchains
292 - ubuntu-toolchain-r-test
315 - libspice-protocol-dev
316 - libspice-server-dev
326 - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9
327 - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-pie --disable-linux-user"
330 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
331 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-g3 -O0 -Wno-error=stringop-truncation -fsanitize=thread" --extra-ldflags="-fuse-ld=gold" || { cat config.log && exit 1; }
334 # Run check-tcg against linux-user
335 - name: "GCC check-tcg (user)"
337 - CONFIG="--disable-system --enable-debug-tcg"
338 - TEST_BUILD_CMD="make build-tcg"
339 - TEST_CMD="make check-tcg"
340 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
343 # Run check-tcg against linux-user (with plugins)
344 # we skip sparc64-linux-user until it has been fixed somewhat
345 # we skip cris-linux-user as it doesn't use the common run loop
346 - name: "GCC plugins check-tcg (user)"
348 - CONFIG="--disable-system --enable-plugins --enable-debug-tcg --target-list-exclude=sparc64-linux-user,cris-linux-user"
349 - TEST_BUILD_CMD="make build-tcg"
350 - TEST_CMD="make check-tcg"
351 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
354 # Run check-tcg against softmmu targets
355 - name: "GCC check-tcg (some-softmmu)"
357 - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
358 - TEST_BUILD_CMD="make build-tcg"
359 - TEST_CMD="make check-tcg"
360 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
363 # Run check-tcg against softmmu targets (with plugins)
364 - name: "GCC plugins check-tcg (some-softmmu)"
366 - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
367 - TEST_BUILD_CMD="make build-tcg"
368 - TEST_CMD="make check-tcg"
369 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
371 - name: "[aarch64] GCC check-tcg"
400 - TEST_CMD="make check check-tcg V=1"
401 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS}"
404 - name: "[ppc64] GCC check-tcg"
433 - TEST_CMD="make check check-tcg V=1"
434 - CONFIG="--disable-containers --target-list=ppc64-softmmu,ppc64le-linux-user"
436 - name: "[s390x] GCC check-tcg"
465 - TEST_CMD="make check check-tcg V=1"
466 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user"
469 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
471 if [ "$BUILD_RC" -eq 0 ] ; then
472 mv pc-bios/s390-ccw/*.img pc-bios/ ;
478 - name: "[s390x] GCC (other-softmmu)"
504 - CONFIG="--disable-containers --audio-drv-list=sdl --disable-user
505 --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
507 - name: "[s390x] GCC (user)"
515 - CONFIG="--disable-containers --disable-system"
517 - name: "[s390x] Clang (disable-tcg)"
545 - TEST_CMD="make check-unit"
546 - CONFIG="--disable-containers --disable-tcg --enable-kvm
547 --disable-tools --host-cc=clang --cxx=clang++"
551 # The make-release script expect a QEMU version, so our tag must start with a 'v'.
552 # This is the case when release candidate tags are created.
553 - name: "Release tarball"
554 if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
556 # We want to build from the release tarball
557 - BUILD_DIR="release/build/dir" SRC_DIR="../../.."
558 - BASE_CONFIG="--prefix=$PWD/dist"
559 - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user"
560 - TEST_CMD="make install -j${JOBS}"
561 - QEMU_VERSION="${TRAVIS_TAG:1}"
562 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
564 - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2
565 - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2
566 - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION}
567 - mkdir -p release-build && cd release-build
568 - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
571 - env: UNRELIABLE=true