travis.yml: Detach build and test steps
[qemu/ar7.git] / .travis.yml
blob848a2714efe653851ff0441aac01d7b36508bc72
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
4 dist: xenial
5 language: c
6 compiler:
7   - gcc
8 cache:
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
15   timeout: 1200
16   ccache: true
17   pip: true
18   directories:
19   - $HOME/avocado/data/cache
22 addons:
23   apt:
24     packages:
25       # Build dependencies
26       - libaio-dev
27       - libattr1-dev
28       - libbrlapi-dev
29       - libcap-ng-dev
30       - libgcc-4.8-dev
31       - libgnutls28-dev
32       - libgtk-3-dev
33       - libiscsi-dev
34       - liblttng-ust-dev
35       - libncurses5-dev
36       - libnfs-dev
37       - libnss3-dev
38       - libpixman-1-dev
39       - libpng-dev
40       - librados-dev
41       - libsdl2-dev
42       - libsdl2-image-dev
43       - libseccomp-dev
44       - libspice-protocol-dev
45       - libspice-server-dev
46       - libssh-dev
47       - liburcu-dev
48       - libusb-1.0-0-dev
49       - libvdeplug-dev
50       - libvte-2.91-dev
51       - sparse
52       - uuid-dev
53       - gcovr
54   homebrew:
55     packages:
56       - ccache
57       - glib
58       - pixman
59       - gnu-sed
60     update: true
63 # The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
64 # to prevent IRC notifications from forks. This was created using:
65 # $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
66 notifications:
67   irc:
68     channels:
69       - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
70     on_success: change
71     on_failure: always
74 env:
75   global:
76     - SRC_DIR=".."
77     - BUILD_DIR="build"
78     - BASE_CONFIG="--disable-docs --disable-tools"
79     - TEST_CMD="make check V=1"
80     # This is broadly a list of "mainline" softmmu targets which have support across the major distros
81     - MAIN_SOFTMMU_TARGETS="aarch64-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
82     - CCACHE_SLOPPINESS="include_file_ctime,include_file_mtime"
83     - CCACHE_MAXSIZE=1G
86 git:
87   # we want to do this ourselves
88   submodules: false
91 before_script:
92   - if [ "$TRAVIS_OS_NAME" == "osx" ] ; then export PATH="/usr/local/opt/ccache/libexec:$PATH" ; fi
93   - if command -v ccache ; then ccache --zero-stats ; fi
94   - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
95   - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
96 script:
97   - BUILD_RC=0 && make -j3 || BUILD_RC=$?
98   - if [ "$BUILD_RC" -eq 0 ] ; then travis_retry ${TEST_CMD} ; else $(exit $BUILD_RC); fi
99 after_script:
100   - if command -v ccache ; then ccache --show-stats ; fi
103 matrix:
104   include:
105     - env:
106         - CONFIG="--disable-system --static"
107         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
110     # we split the system builds as it takes a while to build them all
111     - env:
112         - CONFIG="--disable-user --target-list=${MAIN_SOFTMMU_TARGETS}"
113         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
116     - env:
117         - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
118         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
121     # Just build tools and run minimal unit and softfloat checks
122     - env:
123         - BASE_CONFIG="--enable-tools"
124         - CONFIG="--disable-user --disable-system"
125         - TEST_CMD="make check-unit check-softfloat -j3"
126         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
129     # --enable-debug implies --enable-debug-tcg, also runs quite a bit slower
130     - env:
131         - CONFIG="--enable-debug --target-list=${MAIN_SOFTMMU_TARGETS}"
132         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug"
135     # TCG debug can be run just on its own and is mostly agnostic to user/softmmu distinctions
136     - env:
137         - CONFIG="--enable-debug-tcg --disable-system"
138         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
141     - env:
142         - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-libusb --disable-replication --target-list=${MAIN_SOFTMMU_TARGETS}"
145     # Module builds are mostly of interest to major distros
146     - env:
147         - CONFIG="--enable-modules --target-list=${MAIN_SOFTMMU_TARGETS}"
148         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
151     # Alternate coroutines implementations are only really of interest to KVM users
152     # However we can't test against KVM on Travis so we can only run unit tests
153     - env:
154         - CONFIG="--with-coroutine=ucontext --disable-tcg"
155         - TEST_CMD="make check-unit -j3 V=1"
158     - env:
159         - CONFIG="--with-coroutine=sigaltstack --disable-tcg"
160         - TEST_CMD="make check-unit -j3 V=1"
163     # Check we can build docs and tools (out of tree)
164     - env:
165         - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
166         - BASE_CONFIG="--enable-tools --enable-docs"
167         - CONFIG="--target-list=x86_64-softmmu,aarch64-linux-user"
168         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
169       addons:
170         apt:
171           packages:
172             - python-sphinx
173             - texinfo
174             - perl
177     # Test with Clang for compile portability (Travis uses clang-5.0)
178     - env:
179         - CONFIG="--disable-system"
180         - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
181       compiler: clang
184     - env:
185         - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS} "
186         - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-sanitize"
187       compiler: clang
188       before_script:
189         - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
190         - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-fsanitize=undefined -Werror" || { cat config.log && exit 1; }
193     - env:
194         - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
195         - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
196       compiler: clang
199     # gprof/gcov are GCC features
200     - env:
201         - CONFIG="--enable-gprof --enable-gcov --disable-pie --target-list=${MAIN_SOFTMMU_TARGETS}"
202       after_success:
203         - ${SRC_DIR}/scripts/travis/coverage-summary.sh
206     # We manually include builds which we disable "make check" for
207     - env:
208         - CONFIG="--without-default-devices --disable-user"
209         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
210         - TEST_CMD=""
213     # Check the TCG interpreter (TCI)
214     - env:
215         - CONFIG="--enable-debug-tcg --enable-tcg-interpreter --disable-kvm --disable-containers
216             --target-list=alpha-softmmu,arm-softmmu,hppa-softmmu,m68k-softmmu,microblaze-softmmu,moxie-softmmu,ppc-softmmu,s390x-softmmu,x86_64-softmmu"
217         - TEST_CMD="make check-qtest check-tcg V=1"
220     # We don't need to exercise every backend with every front-end
221     - env:
222         - CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
223         - TEST_CMD=""
226     - env:
227         - CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
228         - TEST_CMD=""
231     - env:
232         - CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
233         - TEST_CMD=""
236     # MacOSX builds - cirrus.yml also tests some MacOS builds including latest Xcode
238     - env:
239         - CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
240       os: osx
241       osx_image: xcode10.3
242       compiler: clang
245     # Python builds
246     - env:
247         - CONFIG="--target-list=x86_64-softmmu"
248         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
249       language: python
250       python:
251         - "3.5"
254     - env:
255         - CONFIG="--target-list=x86_64-softmmu"
256         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
257       language: python
258       python:
259         - "3.6"
262     # Acceptance (Functional) tests
263     - env:
264         - CONFIG="--python=/usr/bin/python3 --target-list=x86_64-softmmu,mips-softmmu,mips64el-softmmu,aarch64-softmmu,arm-softmmu,s390x-softmmu,alpha-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,sparc-softmmu"
265         - TEST_CMD="make check-acceptance"
266       after_script:
267         - 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
268       addons:
269         apt:
270           packages:
271             - python3-pil
272             - python3-pip
273             - python3.5-venv
274             - tesseract-ocr
275             - tesseract-ocr-eng
278     # Using newer GCC with sanitizers
279     - addons:
280         apt:
281           update: true
282           sources:
283             # PPAs for newer toolchains
284             - ubuntu-toolchain-r-test
285           packages:
286             # Extra toolchains
287             - gcc-9
288             - g++-9
289             # Build dependencies
290             - libaio-dev
291             - libattr1-dev
292             - libbrlapi-dev
293             - libcap-ng-dev
294             - libgnutls-dev
295             - libgtk-3-dev
296             - libiscsi-dev
297             - liblttng-ust-dev
298             - libnfs-dev
299             - libncurses5-dev
300             - libnss3-dev
301             - libpixman-1-dev
302             - libpng12-dev
303             - librados-dev
304             - libsdl2-dev
305             - libsdl2-image-dev
306             - libseccomp-dev
307             - libspice-protocol-dev
308             - libspice-server-dev
309             - libssh-dev
310             - liburcu-dev
311             - libusb-1.0-0-dev
312             - libvte-2.91-dev
313             - sparse
314             - uuid-dev
315       language: generic
316       compiler: none
317       env:
318         - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9
319         - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-pie --disable-linux-user"
320         - TEST_CMD=""
321       before_script:
322         - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
323         - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-g3 -O0 -Wno-error=stringop-truncation -fsanitize=thread -fuse-ld=gold" || { cat config.log && exit 1; }
326     # Run check-tcg against linux-user
327     - env:
328         - CONFIG="--disable-system --enable-debug-tcg"
329         - TEST_CMD="make -j3 check-tcg V=1"
330         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
333     # Run check-tcg against linux-user (with plugins)
334     # we skip sparc64-linux-user until it has been fixed somewhat
335     - env:
336         - CONFIG="--disable-system --enable-plugins --enable-debug-tcg --target-list-exclude=sparc64-linux-user"
337         - TEST_CMD="make -j3 check-tcg V=1"
338         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
341     # Run check-tcg against softmmu targets
342     - env:
343         - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
344         - TEST_CMD="make -j3 check-tcg V=1"
345         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
348     # Run check-tcg against softmmu targets (with plugins)
349     - env:
350         - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
351         - TEST_CMD="make -j3 check-tcg V=1"
352         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
354     - arch: arm64
355       dist: xenial
356       addons:
357         apt_packages:
358           - libaio-dev
359           - libattr1-dev
360           - libbrlapi-dev
361           - libcap-ng-dev
362           - libgcrypt20-dev
363           - libgnutls28-dev
364           - libgtk-3-dev
365           - libiscsi-dev
366           - liblttng-ust-dev
367           - libncurses5-dev
368           - libnfs-dev
369           - libnss3-dev
370           - libpixman-1-dev
371           - libpng-dev
372           - librados-dev
373           - libsdl2-dev
374           - libseccomp-dev
375           - liburcu-dev
376           - libusb-1.0-0-dev
377           - libvdeplug-dev
378           - libvte-2.91-dev
379       env:
380         - TEST_CMD="make check check-tcg V=1"
381         - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS}"
383     - arch: ppc64le
384       dist: xenial
385       addons:
386         apt_packages:
387           - libaio-dev
388           - libattr1-dev
389           - libbrlapi-dev
390           - libcap-ng-dev
391           - libgcrypt20-dev
392           - libgnutls28-dev
393           - libgtk-3-dev
394           - libiscsi-dev
395           - liblttng-ust-dev
396           - libncurses5-dev
397           - libnfs-dev
398           - libnss3-dev
399           - libpixman-1-dev
400           - libpng-dev
401           - librados-dev
402           - libsdl2-dev
403           - libseccomp-dev
404           - liburcu-dev
405           - libusb-1.0-0-dev
406           - libvdeplug-dev
407           - libvte-2.91-dev
408       env:
409         - TEST_CMD="make check check-tcg V=1"
410         - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},ppc64le-linux-user"
412     - arch: s390x
413       dist: bionic
414       addons:
415         apt_packages:
416           - libaio-dev
417           - libattr1-dev
418           - libbrlapi-dev
419           - libcap-ng-dev
420           - libgcrypt20-dev
421           - libgnutls28-dev
422           - libgtk-3-dev
423           - libiscsi-dev
424           - liblttng-ust-dev
425           - libncurses5-dev
426           - libnfs-dev
427           - libnss3-dev
428           - libpixman-1-dev
429           - libpng-dev
430           - librados-dev
431           - libsdl2-dev
432           - libseccomp-dev
433           - liburcu-dev
434           - libusb-1.0-0-dev
435           - libvdeplug-dev
436           - libvte-2.91-dev
437       env:
438         - TEST_CMD="make check check-tcg V=1"
439         - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user"
441     # Release builds
442     # The make-release script expect a QEMU version, so our tag must start with a 'v'.
443     # This is the case when release candidate tags are created.
444     - if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
445       env:
446         # We want to build from the release tarball
447         - BUILD_DIR="release/build/dir" SRC_DIR="../../.."
448         - BASE_CONFIG="--prefix=$PWD/dist"
449         - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user"
450         - TEST_CMD="make install -j3"
451         - QEMU_VERSION="${TRAVIS_TAG:1}"
452         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
453       before_script:
454         - command -v ccache && ccache --zero-stats
455         - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
456       script:
457         - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2
458         - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2
459         - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION}
460         - mkdir -p release-build && cd release-build
461         - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
462         - make install