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
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
89 # We no longer use nproc to calculate jobs:
90 # https://travis-ci.community/t/nproc-reports-32-cores-on-arm64/5851
92 - if command -v ccache ; then ccache --zero-stats ; fi
94 - echo "=== Using ${JOBS} simultaneous jobs ==="
96 # Configure step - may be overridden
98 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
99 - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log meson-logs/meson-log.txt && exit 1; }
101 # Main build & test - rarely overridden - controlled by TEST_CMD
103 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
105 if [ "$BUILD_RC" -eq 0 ] && [ -n "$TEST_BUILD_CMD" ]; then
106 ${TEST_BUILD_CMD} || BUILD_RC=$?
111 if [ "$BUILD_RC" -eq 0 ] ; then
118 - if command -v ccache ; then ccache --show-stats ; fi
124 - name: "[aarch64] GCC check-tcg"
154 - TEST_CMD="make check check-tcg V=1"
155 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS} --cxx=/bin/false"
158 - name: "[ppc64] GCC check-tcg"
188 - TEST_CMD="make check check-tcg V=1"
189 - CONFIG="--disable-containers --target-list=ppc64-softmmu,ppc64le-linux-user"
191 - name: "[s390x] GCC check-tcg"
221 - TEST_CMD="make check check-tcg V=1"
222 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user"
225 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
227 if [ "$BUILD_RC" -eq 0 ] ; then
228 mv pc-bios/s390-ccw/*.img pc-bios/ ;
234 - name: "[s390x] GCC (other-softmmu)"
261 - CONFIG="--disable-containers --audio-drv-list=sdl --disable-user
262 --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
264 - name: "[s390x] GCC (user)"
273 - CONFIG="--disable-containers --disable-system"
275 - name: "[s390x] Clang (disable-tcg)"
304 - TEST_CMD="make check-unit"
305 - CONFIG="--disable-containers --disable-tcg --enable-kvm
306 --disable-tools --host-cc=clang --cxx=clang++"
310 # The make-release script expect a QEMU version, so our tag must start with a 'v'.
311 # This is the case when release candidate tags are created.
312 - name: "Release tarball"
313 if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
315 # We want to build from the release tarball
316 - BUILD_DIR="release/build/dir" SRC_DIR="../../.."
317 - BASE_CONFIG="--prefix=$PWD/dist"
318 - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user"
319 - TEST_CMD="make install -j${JOBS}"
320 - QEMU_VERSION="${TRAVIS_TAG:1}"
321 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
323 - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2
324 - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2
325 - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION}
326 - mkdir -p release-build && cd release-build
327 - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log meson-logs/meson-log.txt && exit 1; }
330 - env: UNRELIABLE=true