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