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
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 meson-logs/meson-log.txt && 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
122 - name: "[aarch64] GCC check-tcg"
152 - TEST_CMD="make check check-tcg V=1"
153 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS} --cxx=/bin/false"
156 - name: "[ppc64] GCC check-tcg"
186 - TEST_CMD="make check check-tcg V=1"
187 - CONFIG="--disable-containers --target-list=ppc64-softmmu,ppc64le-linux-user"
189 - name: "[s390x] GCC check-tcg"
219 - TEST_CMD="make check check-tcg V=1"
220 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user"
223 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
225 if [ "$BUILD_RC" -eq 0 ] ; then
226 mv pc-bios/s390-ccw/*.img pc-bios/ ;
232 - name: "[s390x] GCC (other-softmmu)"
259 - CONFIG="--disable-containers --audio-drv-list=sdl --disable-user
260 --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
262 - name: "[s390x] GCC (user)"
271 - CONFIG="--disable-containers --disable-system"
273 - name: "[s390x] Clang (disable-tcg)"
302 - TEST_CMD="make check-unit"
303 - CONFIG="--disable-containers --disable-tcg --enable-kvm
304 --disable-tools --host-cc=clang --cxx=clang++"
308 # The make-release script expect a QEMU version, so our tag must start with a 'v'.
309 # This is the case when release candidate tags are created.
310 - name: "Release tarball"
311 if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
313 # We want to build from the release tarball
314 - BUILD_DIR="release/build/dir" SRC_DIR="../../.."
315 - BASE_CONFIG="--prefix=$PWD/dist"
316 - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user"
317 - TEST_CMD="make install -j${JOBS}"
318 - QEMU_VERSION="${TRAVIS_TAG:1}"
319 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
321 - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2
322 - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2
323 - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION}
324 - mkdir -p release-build && cd release-build
325 - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log meson-logs/meson-log.txt && exit 1; }
328 - env: UNRELIABLE=true