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, bionic or focal)
14 # - Names and values of visible environment variables set in .travis.yml or Settings panel
19 - $HOME/avocado/data/cache
44 - libspice-protocol-dev
60 # The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
61 # to prevent IRC notifications from forks. This was created using:
62 # $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
66 - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
75 - BASE_CONFIG="--disable-docs --disable-tools"
77 - TEST_CMD="make check V=1"
78 # This is broadly a list of "mainline" softmmu targets which have support across the major distros
79 - MAIN_SOFTMMU_TARGETS="aarch64-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
80 - CCACHE_SLOPPINESS="include_file_ctime,include_file_mtime"
82 - G_MESSAGES_DEBUG=error
86 # we want to do this ourselves
89 # Common first phase for all steps
91 - if command -v ccache ; then ccache --zero-stats ; fi
92 - export JOBS=$(($(getconf _NPROCESSORS_ONLN) + 1))
93 - echo "=== Using ${JOBS} simultaneous jobs ==="
95 # Configure step - may be overridden
97 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
98 - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log meson-logs/meson-log.txt && exit 1; }
100 # Main build & test - rarely overridden - controlled by TEST_CMD
102 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
104 if [ "$BUILD_RC" -eq 0 ] && [ -n "$TEST_BUILD_CMD" ]; then
105 ${TEST_BUILD_CMD} || BUILD_RC=$?
110 if [ "$BUILD_RC" -eq 0 ] ; then
117 - if command -v ccache ; then ccache --show-stats ; fi
122 - name: "GCC static (user)"
124 - CONFIG="--disable-system --static"
125 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
127 # Just build tools and run minimal unit and softfloat checks
128 - name: "GCC check-unit and check-softfloat"
130 - BASE_CONFIG="--enable-tools"
131 - CONFIG="--disable-user --disable-system"
132 - TEST_CMD="make check-unit check-softfloat -j${JOBS}"
133 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
136 # --enable-debug implies --enable-debug-tcg, also runs quite a bit slower
137 - name: "GCC debug (main-softmmu)"
139 - CONFIG="--enable-debug --target-list=${MAIN_SOFTMMU_TARGETS}"
140 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug"
143 # TCG debug can be run just on its own and is mostly agnostic to user/softmmu distinctions
144 - name: "GCC debug (user)"
146 - CONFIG="--enable-debug-tcg --disable-system"
147 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
149 # Module builds are mostly of interest to major distros
150 - name: "GCC modules (main-softmmu)"
152 - CONFIG="--enable-modules --target-list=${MAIN_SOFTMMU_TARGETS}"
153 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
156 # Alternate coroutines implementations are only really of interest to KVM users
157 # However we can't test against KVM on Travis so we can only run unit tests
158 - name: "check-unit coroutine=ucontext"
160 - CONFIG="--with-coroutine=ucontext --disable-tcg"
161 - TEST_CMD="make check-unit -j${JOBS} V=1"
164 - name: "check-unit coroutine=sigaltstack"
166 - CONFIG="--with-coroutine=sigaltstack --disable-tcg"
167 - TEST_CMD="make check-unit -j${JOBS} V=1"
170 # Check we can build docs and tools (out of tree)
171 - name: "tools and docs (bionic)"
174 - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
175 - BASE_CONFIG="--enable-tools --enable-docs"
176 - CONFIG="--target-list=x86_64-softmmu,aarch64-linux-user"
177 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
186 # Test with Clang for compile portability (Travis uses clang-5.0)
187 - name: "Clang (user)"
189 - CONFIG="--disable-system --host-cc=clang --cxx=clang++"
190 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
194 - name: "Clang (main-softmmu)"
196 - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS}
197 --host-cc=clang --cxx=clang++"
198 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-sanitize"
201 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
202 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-fsanitize=undefined -Werror" || { cat config.log meson-logs/meson-log.txt && exit 1; }
205 - name: "Clang (other-softmmu)"
207 - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}
208 --host-cc=clang --cxx=clang++"
209 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
213 # gprof/gcov are GCC features
214 - name: "GCC gprof/gcov"
221 - CONFIG="--enable-gprof --enable-gcov --disable-libssh
222 --target-list=${MAIN_SOFTMMU_TARGETS}"
224 - ${SRC_DIR}/scripts/travis/coverage-summary.sh
227 # We manually include builds which we disable "make check" for
228 - name: "GCC without-default-devices (softmmu)"
230 - CONFIG="--without-default-devices --disable-user"
231 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
235 # Using newer GCC with sanitizers
236 - name: "GCC9 with sanitizers (softmmu)"
242 # PPAs for newer toolchains
243 - ubuntu-toolchain-r-test
266 - libspice-protocol-dev
267 - libspice-server-dev
277 - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9
278 - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-linux-user"
281 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
282 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread" || { cat config.log meson-logs/meson-log.txt && exit 1; }
285 - name: "[aarch64] GCC check-tcg"
315 - TEST_CMD="make check check-tcg V=1"
316 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS}"
319 - name: "[ppc64] GCC check-tcg"
349 - TEST_CMD="make check check-tcg V=1"
350 - CONFIG="--disable-containers --target-list=ppc64-softmmu,ppc64le-linux-user"
352 - name: "[s390x] GCC check-tcg"
382 - TEST_CMD="make check check-tcg V=1"
383 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user"
386 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
388 if [ "$BUILD_RC" -eq 0 ] ; then
389 mv pc-bios/s390-ccw/*.img pc-bios/ ;
395 - name: "[s390x] GCC (other-softmmu)"
422 - CONFIG="--disable-containers --audio-drv-list=sdl --disable-user
423 --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
425 - name: "[s390x] GCC (user)"
434 - CONFIG="--disable-containers --disable-system"
436 - name: "[s390x] Clang (disable-tcg)"
465 - TEST_CMD="make check-unit"
466 - CONFIG="--disable-containers --disable-tcg --enable-kvm
467 --disable-tools --host-cc=clang --cxx=clang++"
471 # The make-release script expect a QEMU version, so our tag must start with a 'v'.
472 # This is the case when release candidate tags are created.
473 - name: "Release tarball"
474 if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
476 # We want to build from the release tarball
477 - BUILD_DIR="release/build/dir" SRC_DIR="../../.."
478 - BASE_CONFIG="--prefix=$PWD/dist"
479 - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user"
480 - TEST_CMD="make install -j${JOBS}"
481 - QEMU_VERSION="${TRAVIS_TAG:1}"
482 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
484 - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2
485 - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2
486 - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION}
487 - mkdir -p release-build && cd release-build
488 - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log meson-logs/meson-log.txt && exit 1; }
491 - env: UNRELIABLE=true