]> git.proxmox.com Git - mirror_qemu.git/blame - .travis.yml
decodetree: Open files with encoding='utf-8'
[mirror_qemu.git] / .travis.yml
CommitLineData
95310576
AB
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
321e6ea5 4os: linux
e769905e 5dist: focal
fe863ab9 6language: c
fe863ab9
AB
7compiler:
8 - gcc
4bc629b2 9cache:
5ef9c53c
PMD
10 # There is one cache per branch and compiler version.
11 # characteristics of each job are used to identify the cache:
22a23195 12 # - OS name (currently only linux)
e769905e 13 # - OS distribution (for Linux, bionic or focal)
5ef9c53c 14 # - Names and values of visible environment variables set in .travis.yml or Settings panel
731cbb64 15 timeout: 1200
4bc629b2 16 ccache: true
6e189d78 17 pip: true
c1073e44
PMD
18 directories:
19 - $HOME/avocado/data/cache
197be697
DB
20
21
692d162c
AB
22addons:
23 apt:
24 packages:
32265288 25 # Build dependencies
692d162c
AB
26 - libaio-dev
27 - libattr1-dev
28 - libbrlapi-dev
29 - libcap-ng-dev
e769905e 30 - libgcc-7-dev
3c7a8b41 31 - libgnutls28-dev
692d162c
AB
32 - libgtk-3-dev
33 - libiscsi-dev
34 - liblttng-ust-dev
35 - libncurses5-dev
d83414e1 36 - libnfs-dev
692d162c
AB
37 - libnss3-dev
38 - libpixman-1-dev
3c7a8b41 39 - libpng-dev
692d162c 40 - librados-dev
241e7955
TH
41 - libsdl2-dev
42 - libsdl2-image-dev
692d162c
AB
43 - libseccomp-dev
44 - libspice-protocol-dev
45 - libspice-server-dev
b10d49d7 46 - libssh-dev
692d162c
AB
47 - liburcu-dev
48 - libusb-1.0-0-dev
7c1dd4d1 49 - libvdeplug-dev
95310576 50 - libvte-2.91-dev
3a678481 51 - libzstd-dev
345d7053 52 - ninja-build
692d162c
AB
53 - sparse
54 - uuid-dev
0708e647 55 - gcovr
58a1e5b6
WSM
56 # Tests dependencies
57 - genisoimage
692d162c 58
197be697 59
cb4c2536
PK
60# The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
61# to prevent IRC notifications from forks. This was created using:
62# $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
39d16d29
AB
63notifications:
64 irc:
65 channels:
cb4c2536 66 - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
39d16d29
AB
67 on_success: change
68 on_failure: always
197be697
DB
69
70
fe863ab9
AB
71env:
72 global:
bc4486fb
PB
73 - SRC_DIR=".."
74 - BUILD_DIR="build"
570f3c77 75 - BASE_CONFIG="--disable-docs --disable-tools"
4f46afd9 76 - TEST_BUILD_CMD=""
05273a43 77 - TEST_CMD="make check V=1"
8c3daf97 78 # This is broadly a list of "mainline" softmmu targets which have support across the major distros
6e988880 79 - MAIN_SOFTMMU_TARGETS="aarch64-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
bcfbf0d5
PMD
80 - CCACHE_SLOPPINESS="include_file_ctime,include_file_mtime"
81 - CCACHE_MAXSIZE=1G
2dbd39c2 82 - G_MESSAGES_DEBUG=error
bcfbf0d5 83
197be697 84
cb021cfe
AB
85git:
86 # we want to do this ourselves
87 submodules: false
197be697 88
b3165c87
AB
89# Common first phase for all steps
90before_install:
91 - if command -v ccache ; then ccache --zero-stats ; fi
0a7c0ae0
AB
92 - export JOBS=$(($(getconf _NPROCESSORS_ONLN) + 1))
93 - echo "=== Using ${JOBS} simultaneous jobs ==="
197be697 94
b3165c87 95# Configure step - may be overridden
eebf2940 96before_script:
ebf2ff65 97 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
c47110d9 98 - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log meson-logs/meson-log.txt && exit 1; }
b3165c87
AB
99
100# Main build & test - rarely overridden - controlled by TEST_CMD
eebf2940 101script:
0a7c0ae0 102 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
4f46afd9
AB
103 - |
104 if [ "$BUILD_RC" -eq 0 ] && [ -n "$TEST_BUILD_CMD" ]; then
105 ${TEST_BUILD_CMD} || BUILD_RC=$?
106 else
107 $(exit $BUILD_RC);
108 fi
ec49faac
AB
109 - |
110 if [ "$BUILD_RC" -eq 0 ] ; then
111 ${TEST_CMD} ;
112 else
113 $(exit $BUILD_RC);
114 fi
bcfbf0d5 115after_script:
4f8bde52 116 - df -h
312995c2 117 - if command -v ccache ; then ccache --show-stats ; fi
197be697
DB
118
119
321e6ea5 120jobs:
fe863ab9 121 include:
df2bb38e 122 # Just build tools and run minimal unit and softfloat checks
7f808687 123 - name: "GCC check-unit and check-softfloat"
097aebd8 124 env:
df2bb38e
AB
125 - BASE_CONFIG="--enable-tools"
126 - CONFIG="--disable-user --disable-system"
0a7c0ae0 127 - TEST_CMD="make check-unit check-softfloat -j${JOBS}"
7d183c54
PMD
128 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
129
df2bb38e 130
138382c6 131 # --enable-debug implies --enable-debug-tcg, also runs quite a bit slower
097aebd8
PMD
132 - name: "GCC debug (main-softmmu)"
133 env:
138382c6 134 - CONFIG="--enable-debug --target-list=${MAIN_SOFTMMU_TARGETS}"
8fb90e3d 135 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug"
4e6e7df6
AB
136
137
138382c6 138 # TCG debug can be run just on its own and is mostly agnostic to user/softmmu distinctions
097aebd8
PMD
139 - name: "GCC debug (user)"
140 env:
4e6e7df6 141 - CONFIG="--enable-debug-tcg --disable-system"
19633df8 142 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
3e094234 143
2f6c2526 144 # Module builds are mostly of interest to major distros
097aebd8
PMD
145 - name: "GCC modules (main-softmmu)"
146 env:
8c3daf97 147 - CONFIG="--enable-modules --target-list=${MAIN_SOFTMMU_TARGETS}"
7d183c54 148 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
3e094234
DB
149
150
956d4506 151 # Check we can build docs and tools (out of tree)
204b30e2
AB
152 - name: "tools and docs (bionic)"
153 dist: bionic
097aebd8 154 env:
956d4506 155 - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
570f3c77
AB
156 - BASE_CONFIG="--enable-tools --enable-docs"
157 - CONFIG="--target-list=x86_64-softmmu,aarch64-linux-user"
7d183c54 158 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
570f3c77
AB
159 addons:
160 apt:
161 packages:
345d7053 162 - ninja-build
68e5b85e 163 - python3-sphinx
570f3c77
AB
164 - perl
165
197be697 166
ae6d692d 167 # Test with Clang for compile portability (Travis uses clang-5.0)
097aebd8
PMD
168 - name: "Clang (user)"
169 env:
6f83cf88 170 - CONFIG="--disable-system --host-cc=clang --cxx=clang++"
e2bef011 171 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
ae6d692d 172 compiler: clang
197be697
DB
173
174
097aebd8
PMD
175 - name: "Clang (main-softmmu)"
176 env:
6f83cf88
TH
177 - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS}
178 --host-cc=clang --cxx=clang++"
b08c2ae3 179 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-sanitize"
7831147e
AB
180 compiler: clang
181 before_script:
bc4486fb 182 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
c47110d9 183 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-fsanitize=undefined -Werror" || { cat config.log meson-logs/meson-log.txt && exit 1; }
7831147e
AB
184
185
097aebd8
PMD
186 - name: "Clang (other-softmmu)"
187 env:
6f83cf88
TH
188 - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}
189 --host-cc=clang --cxx=clang++"
e2bef011 190 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
d9a6b013 191 compiler: clang
197be697
DB
192
193
6c933291 194 # gprof/gcov are GCC features
097aebd8 195 - name: "GCC gprof/gcov"
e769905e 196 dist: bionic
345d7053
PB
197 addons:
198 apt:
199 packages:
200 - ninja-build
097aebd8 201 env:
e769905e
TH
202 - CONFIG="--enable-gprof --enable-gcov --disable-libssh
203 --target-list=${MAIN_SOFTMMU_TARGETS}"
0708e647
AB
204 after_success:
205 - ${SRC_DIR}/scripts/travis/coverage-summary.sh
197be697
DB
206
207
32265288 208 # Using newer GCC with sanitizers
097aebd8 209 - name: "GCC9 with sanitizers (softmmu)"
e769905e 210 dist: bionic
097aebd8 211 addons:
32265288 212 apt:
ac07ffc6 213 update: true
32265288
AB
214 sources:
215 # PPAs for newer toolchains
216 - ubuntu-toolchain-r-test
217 packages:
218 # Extra toolchains
3998c25e
AB
219 - gcc-9
220 - g++-9
32265288
AB
221 # Build dependencies
222 - libaio-dev
223 - libattr1-dev
224 - libbrlapi-dev
225 - libcap-ng-dev
e769905e 226 - libgnutls28-dev
32265288
AB
227 - libgtk-3-dev
228 - libiscsi-dev
229 - liblttng-ust-dev
230 - libnfs-dev
231 - libncurses5-dev
232 - libnss3-dev
233 - libpixman-1-dev
e769905e 234 - libpng-dev
32265288 235 - librados-dev
241e7955
TH
236 - libsdl2-dev
237 - libsdl2-image-dev
32265288
AB
238 - libseccomp-dev
239 - libspice-protocol-dev
240 - libspice-server-dev
32265288
AB
241 - liburcu-dev
242 - libusb-1.0-0-dev
95310576 243 - libvte-2.91-dev
345d7053 244 - ninja-build
32265288
AB
245 - sparse
246 - uuid-dev
247 language: generic
248 compiler: none
249 env:
3998c25e 250 - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9
e769905e 251 - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-linux-user"
32265288
AB
252 - TEST_CMD=""
253 before_script:
bc4486fb 254 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
c47110d9 255 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread" || { cat config.log meson-logs/meson-log.txt && exit 1; }
197be697
DB
256
257
097aebd8
PMD
258 - name: "[aarch64] GCC check-tcg"
259 arch: arm64
e769905e 260 dist: focal
9c5941a9
TH
261 addons:
262 apt_packages:
263 - libaio-dev
264 - libattr1-dev
265 - libbrlapi-dev
266 - libcap-ng-dev
267 - libgcrypt20-dev
268 - libgnutls28-dev
269 - libgtk-3-dev
270 - libiscsi-dev
271 - liblttng-ust-dev
272 - libncurses5-dev
273 - libnfs-dev
274 - libnss3-dev
275 - libpixman-1-dev
276 - libpng-dev
277 - librados-dev
278 - libsdl2-dev
279 - libseccomp-dev
280 - liburcu-dev
281 - libusb-1.0-0-dev
282 - libvdeplug-dev
283 - libvte-2.91-dev
345d7053 284 - ninja-build
58a1e5b6
WSM
285 # Tests dependencies
286 - genisoimage
9c5941a9
TH
287 env:
288 - TEST_CMD="make check check-tcg V=1"
289 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS}"
1de8e4c4 290 - UNRELIABLE=true
9c5941a9 291
097aebd8
PMD
292 - name: "[ppc64] GCC check-tcg"
293 arch: ppc64le
e769905e 294 dist: focal
9c5941a9
TH
295 addons:
296 apt_packages:
297 - libaio-dev
298 - libattr1-dev
299 - libbrlapi-dev
300 - libcap-ng-dev
301 - libgcrypt20-dev
302 - libgnutls28-dev
303 - libgtk-3-dev
304 - libiscsi-dev
305 - liblttng-ust-dev
306 - libncurses5-dev
307 - libnfs-dev
308 - libnss3-dev
309 - libpixman-1-dev
310 - libpng-dev
311 - librados-dev
312 - libsdl2-dev
313 - libseccomp-dev
314 - liburcu-dev
315 - libusb-1.0-0-dev
316 - libvdeplug-dev
317 - libvte-2.91-dev
345d7053 318 - ninja-build
58a1e5b6
WSM
319 # Tests dependencies
320 - genisoimage
9c5941a9
TH
321 env:
322 - TEST_CMD="make check check-tcg V=1"
daee97f6 323 - CONFIG="--disable-containers --target-list=ppc64-softmmu,ppc64le-linux-user"
9c5941a9 324
097aebd8
PMD
325 - name: "[s390x] GCC check-tcg"
326 arch: s390x
9c5941a9
TH
327 dist: bionic
328 addons:
329 apt_packages:
330 - libaio-dev
331 - libattr1-dev
332 - libbrlapi-dev
333 - libcap-ng-dev
334 - libgcrypt20-dev
335 - libgnutls28-dev
336 - libgtk-3-dev
337 - libiscsi-dev
338 - liblttng-ust-dev
339 - libncurses5-dev
340 - libnfs-dev
341 - libnss3-dev
342 - libpixman-1-dev
343 - libpng-dev
344 - librados-dev
345 - libsdl2-dev
346 - libseccomp-dev
347 - liburcu-dev
348 - libusb-1.0-0-dev
349 - libvdeplug-dev
350 - libvte-2.91-dev
345d7053 351 - ninja-build
58a1e5b6
WSM
352 # Tests dependencies
353 - genisoimage
9c5941a9
TH
354 env:
355 - TEST_CMD="make check check-tcg V=1"
356 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user"
1de8e4c4 357 - UNRELIABLE=true
31c8cc4f 358 script:
31c8cc4f
TH
359 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
360 - |
361 if [ "$BUILD_RC" -eq 0 ] ; then
362 mv pc-bios/s390-ccw/*.img pc-bios/ ;
363 ${TEST_CMD} ;
364 else
365 $(exit $BUILD_RC);
366 fi
61ac3dcc 367
100a5efb
TH
368 - name: "[s390x] GCC (other-softmmu)"
369 arch: s390x
370 dist: bionic
371 addons:
372 apt_packages:
373 - libaio-dev
374 - libattr1-dev
375 - libcap-ng-dev
376 - libgnutls28-dev
377 - libiscsi-dev
378 - liblttng-ust-dev
379 - liblzo2-dev
380 - libncurses-dev
381 - libnfs-dev
382 - libnss3-dev
383 - libpixman-1-dev
384 - libsdl2-dev
385 - libsdl2-image-dev
386 - libseccomp-dev
387 - libsnappy-dev
388 - libzstd-dev
389 - nettle-dev
390 - xfslibs-dev
345d7053 391 - ninja-build
100a5efb
TH
392 # Tests dependencies
393 - genisoimage
394 env:
395 - CONFIG="--disable-containers --audio-drv-list=sdl --disable-user
396 --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
397
398 - name: "[s390x] GCC (user)"
399 arch: s390x
400 dist: bionic
401 addons:
402 apt_packages:
403 - libgcrypt20-dev
404 - libgnutls28-dev
345d7053 405 - ninja-build
100a5efb
TH
406 env:
407 - CONFIG="--disable-containers --disable-system"
408
aae8b87e 409 - name: "[s390x] Clang (disable-tcg)"
41e1f0e2
PMD
410 arch: s390x
411 dist: bionic
aae8b87e 412 compiler: clang
41e1f0e2
PMD
413 addons:
414 apt_packages:
415 - libaio-dev
416 - libattr1-dev
417 - libbrlapi-dev
418 - libcap-ng-dev
419 - libgcrypt20-dev
420 - libgnutls28-dev
421 - libgtk-3-dev
422 - libiscsi-dev
423 - liblttng-ust-dev
424 - libncurses5-dev
425 - libnfs-dev
426 - libnss3-dev
427 - libpixman-1-dev
428 - libpng-dev
429 - librados-dev
430 - libsdl2-dev
431 - libseccomp-dev
432 - liburcu-dev
433 - libusb-1.0-0-dev
434 - libvdeplug-dev
435 - libvte-2.91-dev
345d7053 436 - ninja-build
41e1f0e2
PMD
437 env:
438 - TEST_CMD="make check-unit"
aae8b87e
TH
439 - CONFIG="--disable-containers --disable-tcg --enable-kvm
440 --disable-tools --host-cc=clang --cxx=clang++"
1de8e4c4 441 - UNRELIABLE=true
41e1f0e2 442
61ac3dcc
PMD
443 # Release builds
444 # The make-release script expect a QEMU version, so our tag must start with a 'v'.
445 # This is the case when release candidate tags are created.
097aebd8
PMD
446 - name: "Release tarball"
447 if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
61ac3dcc
PMD
448 env:
449 # We want to build from the release tarball
450 - BUILD_DIR="release/build/dir" SRC_DIR="../../.."
451 - BASE_CONFIG="--prefix=$PWD/dist"
452 - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user"
0a7c0ae0 453 - TEST_CMD="make install -j${JOBS}"
61ac3dcc
PMD
454 - QEMU_VERSION="${TRAVIS_TAG:1}"
455 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
61ac3dcc
PMD
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}
bc4486fb 460 - mkdir -p release-build && cd release-build
c47110d9 461 - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log meson-logs/meson-log.txt && exit 1; }
61ac3dcc 462 - make install
1de8e4c4
AB
463 allow_failures:
464 - env: UNRELIABLE=true