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
9 # There is one cache per branch and compiler version.
10 # characteristics of each job are used to identify the cache:
11 # - OS name (currently, linux, osx, or windows)
12 # - OS distribution (for Linux, xenial, trusty, or precise)
13 # - macOS image name (e.g., xcode7.2)
14 # - Names and values of visible environment variables set in .travis.yml or Settings panel
19 - $HOME/avocado/data/cache
44 - libspice-protocol-dev
58 # The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
59 # to prevent IRC notifications from forks. This was created using:
60 # $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
64 - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
73 - BASE_CONFIG="--disable-docs --disable-tools"
75 - TEST_CMD="make check V=1"
76 # This is broadly a list of "mainline" softmmu targets which have support across the major distros
77 - MAIN_SOFTMMU_TARGETS="aarch64-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
78 - CCACHE_SLOPPINESS="include_file_ctime,include_file_mtime"
83 # we want to do this ourselves
86 # Common first phase for all steps
88 - if command -v ccache ; then ccache --zero-stats ; fi
89 - export JOBS=$(($(getconf _NPROCESSORS_ONLN) + 1))
90 - echo "=== Using ${JOBS} simultaneous jobs ==="
92 # Configure step - may be overridden
94 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
95 - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
97 # Main build & test - rarely overridden - controlled by TEST_CMD
99 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
101 if [ "$BUILD_RC" -eq 0 ] && [ -n "$TEST_BUILD_CMD" ]; then
102 ${TEST_BUILD_CMD} || BUILD_RC=$?
107 if [ "$BUILD_RC" -eq 0 ] ; then
113 - if command -v ccache ; then ccache --show-stats ; fi
118 - name: "GCC static (user)"
120 - CONFIG="--disable-system --static"
121 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
124 # we split the system builds as it takes a while to build them all
125 - name: "GCC (main-softmmu)"
127 - CONFIG="--disable-user --target-list=${MAIN_SOFTMMU_TARGETS}"
128 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
131 - name: "GCC (other-softmmu)"
133 - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
134 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
137 # Just build tools and run minimal unit and softfloat checks
138 - name: "GCC check-softfloat (user)"
140 - BASE_CONFIG="--enable-tools"
141 - CONFIG="--disable-user --disable-system"
142 - TEST_CMD="make check-unit check-softfloat -j${JOBS}"
143 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
146 # --enable-debug implies --enable-debug-tcg, also runs quite a bit slower
147 - name: "GCC debug (main-softmmu)"
149 - CONFIG="--enable-debug --target-list=${MAIN_SOFTMMU_TARGETS}"
150 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug"
153 # TCG debug can be run just on its own and is mostly agnostic to user/softmmu distinctions
154 - name: "GCC debug (user)"
156 - CONFIG="--enable-debug-tcg --disable-system"
157 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
160 - name: "GCC some libs disabled (main-softmmu)"
162 - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-libusb --disable-replication --target-list=${MAIN_SOFTMMU_TARGETS}"
165 # Module builds are mostly of interest to major distros
166 - name: "GCC modules (main-softmmu)"
168 - CONFIG="--enable-modules --target-list=${MAIN_SOFTMMU_TARGETS}"
169 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
172 # Alternate coroutines implementations are only really of interest to KVM users
173 # However we can't test against KVM on Travis so we can only run unit tests
174 - name: "check-unit coroutine=ucontext"
176 - CONFIG="--with-coroutine=ucontext --disable-tcg"
177 - TEST_CMD="make check-unit -j${JOBS} V=1"
180 - name: "check-unit coroutine=sigaltstack"
182 - CONFIG="--with-coroutine=sigaltstack --disable-tcg"
183 - TEST_CMD="make check-unit -j${JOBS} V=1"
186 # Check we can build docs and tools (out of tree)
187 - name: "tools and docs (bionic)"
190 - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
191 - BASE_CONFIG="--enable-tools --enable-docs"
192 - CONFIG="--target-list=x86_64-softmmu,aarch64-linux-user"
193 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
202 # Test with Clang for compile portability (Travis uses clang-5.0)
203 - name: "Clang (user)"
205 - CONFIG="--disable-system"
206 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
210 - name: "Clang (main-softmmu)"
212 - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS} "
213 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-sanitize"
216 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
217 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-fsanitize=undefined -Werror" || { cat config.log && exit 1; }
220 - name: "Clang (other-softmmu)"
222 - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
223 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
227 # gprof/gcov are GCC features
228 - name: "GCC gprof/gcov"
230 - CONFIG="--enable-gprof --enable-gcov --disable-pie --target-list=${MAIN_SOFTMMU_TARGETS}"
232 - ${SRC_DIR}/scripts/travis/coverage-summary.sh
235 # We manually include builds which we disable "make check" for
236 - name: "GCC without-default-devices (softmmu)"
238 - CONFIG="--without-default-devices --disable-user"
239 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
243 # Check the TCG interpreter (TCI)
246 - CONFIG="--enable-debug-tcg --enable-tcg-interpreter --disable-kvm --disable-containers
247 --target-list=alpha-softmmu,arm-softmmu,hppa-softmmu,m68k-softmmu,microblaze-softmmu,moxie-softmmu,ppc-softmmu,s390x-softmmu,x86_64-softmmu"
248 - TEST_CMD="make check-qtest check-tcg V=1"
251 # We don't need to exercise every backend with every front-end
252 - name: "GCC trace log,simple,syslog (user)"
254 - CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
258 - name: "GCC trace ftrace (x86_64-softmmu)"
260 - CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
264 - name: "GCC trace ust (x86_64-softmmu)"
266 - CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
270 # MacOSX builds - cirrus.yml also tests some MacOS builds including latest Xcode
272 - name: "OSX Xcode 10.3"
274 - CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
288 - brew link --overwrite python
289 - export PATH="/usr/local/opt/ccache/libexec:$PATH"
290 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
291 - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
295 - name: "GCC Python 3.5 (x86_64-softmmu)"
297 - CONFIG="--target-list=x86_64-softmmu"
298 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
304 - name: "GCC Python 3.6 (x86_64-softmmu)"
306 - CONFIG="--target-list=x86_64-softmmu"
307 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
313 # Acceptance (Functional) tests
314 - name: "GCC check-acceptance"
316 - CONFIG="--target-list=aarch64-softmmu,alpha-softmmu,arm-softmmu,m68k-softmmu,microblaze-softmmu,mips-softmmu,mips64el-softmmu,nios2-softmmu,or1k-softmmu,ppc-softmmu,ppc64-softmmu,s390x-softmmu,sparc-softmmu,x86_64-softmmu,xtensa-softmmu"
317 - TEST_CMD="make check-acceptance"
319 - python3 -c 'import json; r = json.load(open("tests/results/latest/results.json")); [print(t["logfile"]) for t in r["tests"] if t["status"] not in ("PASS", "SKIP")]' | xargs cat
331 # Using newer GCC with sanitizers
332 - name: "GCC9 with sanitizers (softmmu)"
337 # PPAs for newer toolchains
338 - ubuntu-toolchain-r-test
361 - libspice-protocol-dev
362 - libspice-server-dev
372 - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9
373 - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-pie --disable-linux-user"
376 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
377 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-g3 -O0 -Wno-error=stringop-truncation -fsanitize=thread" --extra-ldflags="-fuse-ld=gold" || { cat config.log && exit 1; }
380 # Run check-tcg against linux-user
381 - name: "GCC check-tcg (user)"
383 - CONFIG="--disable-system --enable-debug-tcg"
384 - TEST_BUILD_CMD="make build-tcg"
385 - TEST_CMD="make check-tcg"
386 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
389 # Run check-tcg against linux-user (with plugins)
390 # we skip sparc64-linux-user until it has been fixed somewhat
391 # we skip cris-linux-user as it doesn't use the common run loop
392 - name: "GCC plugins check-tcg (user)"
394 - CONFIG="--disable-system --enable-plugins --enable-debug-tcg --target-list-exclude=sparc64-linux-user,cris-linux-user"
395 - TEST_BUILD_CMD="make build-tcg"
396 - TEST_CMD="make check-tcg"
397 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
400 # Run check-tcg against softmmu targets
401 - name: "GCC check-tcg (some-softmmu)"
403 - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
404 - TEST_BUILD_CMD="make -j${JOBS} build-tcg"
405 - TEST_CMD="make check-tcg"
406 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
409 # Run check-tcg against softmmu targets (with plugins)
410 - name: "GCC plugins check-tcg (some-softmmu)"
412 - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
413 - TEST_BUILD_CMD="make -j${JOBS} build-tcg"
414 - TEST_CMD="make check-tcg"
415 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
417 - name: "[aarch64] GCC check-tcg"
446 - TEST_CMD="make check check-tcg V=1"
447 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS}"
449 - name: "[ppc64] GCC check-tcg"
478 - TEST_CMD="make check check-tcg V=1"
479 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},ppc64le-linux-user"
481 - name: "[s390x] GCC check-tcg"
510 - TEST_CMD="make check check-tcg V=1"
511 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user"
514 # The make-release script expect a QEMU version, so our tag must start with a 'v'.
515 # This is the case when release candidate tags are created.
516 - name: "Release tarball"
517 if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
519 # We want to build from the release tarball
520 - BUILD_DIR="release/build/dir" SRC_DIR="../../.."
521 - BASE_CONFIG="--prefix=$PWD/dist"
522 - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user"
523 - TEST_CMD="make install -j${JOBS}"
524 - QEMU_VERSION="${TRAVIS_TAG:1}"
525 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
527 - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2
528 - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2
529 - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION}
530 - mkdir -p release-build && cd release-build
531 - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }