]> git.ipfire.org Git - thirdparty/qemu.git/blame - .travis.yml
aio-posix: signal-proof fdmon-io_uring
[thirdparty/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
95310576 5dist: xenial
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:
12 # - OS name (currently, linux, osx, or windows)
13 # - OS distribution (for Linux, xenial, trusty, or precise)
14 # - macOS image name (e.g., xcode7.2)
15 # - Names and values of visible environment variables set in .travis.yml or Settings panel
731cbb64 16 timeout: 1200
4bc629b2 17 ccache: true
6e189d78 18 pip: true
c1073e44
PMD
19 directories:
20 - $HOME/avocado/data/cache
197be697
DB
21
22
692d162c
AB
23addons:
24 apt:
25 packages:
32265288 26 # Build dependencies
692d162c
AB
27 - libaio-dev
28 - libattr1-dev
29 - libbrlapi-dev
30 - libcap-ng-dev
7524a39d 31 - libgcc-4.8-dev
3c7a8b41 32 - libgnutls28-dev
692d162c
AB
33 - libgtk-3-dev
34 - libiscsi-dev
35 - liblttng-ust-dev
36 - libncurses5-dev
d83414e1 37 - libnfs-dev
692d162c
AB
38 - libnss3-dev
39 - libpixman-1-dev
3c7a8b41 40 - libpng-dev
692d162c 41 - librados-dev
241e7955
TH
42 - libsdl2-dev
43 - libsdl2-image-dev
692d162c
AB
44 - libseccomp-dev
45 - libspice-protocol-dev
46 - libspice-server-dev
b10d49d7 47 - libssh-dev
692d162c
AB
48 - liburcu-dev
49 - libusb-1.0-0-dev
7c1dd4d1 50 - libvdeplug-dev
95310576 51 - libvte-2.91-dev
3a678481 52 - libzstd-dev
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}
570f3c77 98 - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && 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:
312995c2 116 - if command -v ccache ; then ccache --show-stats ; fi
197be697
DB
117
118
321e6ea5 119jobs:
fe863ab9 120 include:
097aebd8
PMD
121 - name: "GCC static (user)"
122 env:
c3c1874a 123 - CONFIG="--disable-system --static"
7d183c54 124 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
3e094234
DB
125
126
8c3daf97 127 # we split the system builds as it takes a while to build them all
097aebd8
PMD
128 - name: "GCC (main-softmmu)"
129 env:
8c3daf97 130 - CONFIG="--disable-user --target-list=${MAIN_SOFTMMU_TARGETS}"
7d183c54 131 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
8c3daf97
AB
132
133
097aebd8
PMD
134 - name: "GCC (other-softmmu)"
135 env:
136 - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
7d183c54 137 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
3e094234
DB
138
139
df2bb38e 140 # Just build tools and run minimal unit and softfloat checks
097aebd8
PMD
141 - name: "GCC check-softfloat (user)"
142 env:
df2bb38e
AB
143 - BASE_CONFIG="--enable-tools"
144 - CONFIG="--disable-user --disable-system"
0a7c0ae0 145 - TEST_CMD="make check-unit check-softfloat -j${JOBS}"
7d183c54
PMD
146 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
147
df2bb38e 148
138382c6 149 # --enable-debug implies --enable-debug-tcg, also runs quite a bit slower
097aebd8
PMD
150 - name: "GCC debug (main-softmmu)"
151 env:
138382c6 152 - CONFIG="--enable-debug --target-list=${MAIN_SOFTMMU_TARGETS}"
8fb90e3d 153 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug"
4e6e7df6
AB
154
155
138382c6 156 # TCG debug can be run just on its own and is mostly agnostic to user/softmmu distinctions
097aebd8
PMD
157 - name: "GCC debug (user)"
158 env:
4e6e7df6 159 - CONFIG="--enable-debug-tcg --disable-system"
19633df8 160 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
3e094234
DB
161
162
097aebd8
PMD
163 - name: "GCC some libs disabled (main-softmmu)"
164 env:
aec2927d 165 - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-libusb --disable-replication --target-list=${MAIN_SOFTMMU_TARGETS}"
3e094234
DB
166
167
2f6c2526 168 # Module builds are mostly of interest to major distros
097aebd8
PMD
169 - name: "GCC modules (main-softmmu)"
170 env:
8c3daf97 171 - CONFIG="--enable-modules --target-list=${MAIN_SOFTMMU_TARGETS}"
7d183c54 172 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
3e094234
DB
173
174
f3908ff7
AB
175 # Alternate coroutines implementations are only really of interest to KVM users
176 # However we can't test against KVM on Travis so we can only run unit tests
097aebd8
PMD
177 - name: "check-unit coroutine=ucontext"
178 env:
f3908ff7 179 - CONFIG="--with-coroutine=ucontext --disable-tcg"
0a7c0ae0 180 - TEST_CMD="make check-unit -j${JOBS} V=1"
3e094234
DB
181
182
097aebd8
PMD
183 - name: "check-unit coroutine=sigaltstack"
184 env:
f3908ff7 185 - CONFIG="--with-coroutine=sigaltstack --disable-tcg"
0a7c0ae0 186 - TEST_CMD="make check-unit -j${JOBS} V=1"
3e094234
DB
187
188
956d4506 189 # Check we can build docs and tools (out of tree)
204b30e2
AB
190 - name: "tools and docs (bionic)"
191 dist: bionic
097aebd8 192 env:
956d4506 193 - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
570f3c77
AB
194 - BASE_CONFIG="--enable-tools --enable-docs"
195 - CONFIG="--target-list=x86_64-softmmu,aarch64-linux-user"
7d183c54 196 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
570f3c77
AB
197 addons:
198 apt:
199 packages:
68e5b85e 200 - python3-sphinx
570f3c77
AB
201 - texinfo
202 - perl
203
197be697 204
ae6d692d 205 # Test with Clang for compile portability (Travis uses clang-5.0)
097aebd8
PMD
206 - name: "Clang (user)"
207 env:
c21d7efc 208 - CONFIG="--disable-system"
e2bef011 209 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
ae6d692d 210 compiler: clang
197be697
DB
211
212
097aebd8
PMD
213 - name: "Clang (main-softmmu)"
214 env:
7831147e 215 - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS} "
b08c2ae3 216 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-sanitize"
7831147e
AB
217 compiler: clang
218 before_script:
bc4486fb
PB
219 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
220 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-fsanitize=undefined -Werror" || { cat config.log && exit 1; }
7831147e
AB
221
222
097aebd8
PMD
223 - name: "Clang (other-softmmu)"
224 env:
8c3daf97 225 - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
e2bef011 226 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
d9a6b013 227 compiler: clang
197be697
DB
228
229
6c933291 230 # gprof/gcov are GCC features
097aebd8
PMD
231 - name: "GCC gprof/gcov"
232 env:
8c3daf97 233 - CONFIG="--enable-gprof --enable-gcov --disable-pie --target-list=${MAIN_SOFTMMU_TARGETS}"
0708e647
AB
234 after_success:
235 - ${SRC_DIR}/scripts/travis/coverage-summary.sh
197be697
DB
236
237
20885b5b 238 # We manually include builds which we disable "make check" for
097aebd8
PMD
239 - name: "GCC without-default-devices (softmmu)"
240 env:
386dc514 241 - CONFIG="--without-default-devices --disable-user"
7d183c54 242 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
20885b5b
PB
243 - TEST_CMD=""
244
245
3edaa995 246 # Check the TCG interpreter (TCI)
097aebd8
PMD
247 - name: "GCC TCI"
248 env:
3edaa995
TH
249 - CONFIG="--enable-debug-tcg --enable-tcg-interpreter --disable-kvm --disable-containers
250 --target-list=alpha-softmmu,arm-softmmu,hppa-softmmu,m68k-softmmu,microblaze-softmmu,moxie-softmmu,ppc-softmmu,s390x-softmmu,x86_64-softmmu"
251 - TEST_CMD="make check-qtest check-tcg V=1"
197be697
DB
252
253
f8309de9 254 # We don't need to exercise every backend with every front-end
097aebd8
PMD
255 - name: "GCC trace log,simple,syslog (user)"
256 env:
c21d7efc
DB
257 - CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
258 - TEST_CMD=""
197be697
DB
259
260
097aebd8
PMD
261 - name: "GCC trace ftrace (x86_64-softmmu)"
262 env:
c21d7efc
DB
263 - CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
264 - TEST_CMD=""
197be697
DB
265
266
097aebd8
PMD
267 - name: "GCC trace ust (x86_64-softmmu)"
268 env:
c21d7efc
DB
269 - CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
270 - TEST_CMD=""
197be697
DB
271
272
fb224688 273 # MacOSX builds - cirrus.yml also tests some MacOS builds including latest Xcode
197be697 274
097aebd8
PMD
275 - name: "OSX Xcode 10.3"
276 env:
af17e7e7 277 - BASE_CONFIG="--disable-docs --enable-tools"
cd7507cb
PMD
278 - CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
279 os: osx
0cb3e7ba 280 osx_image: xcode10.3
cd7507cb 281 compiler: clang
289c8e59
AB
282 addons:
283 homebrew:
284 packages:
285 - ccache
286 - glib
287 - pixman
288 - gnu-sed
289 - python
290 update: true
6e3bd8a0 291 before_script:
289c8e59 292 - brew link --overwrite python
6e3bd8a0 293 - export PATH="/usr/local/opt/ccache/libexec:$PATH"
6e3bd8a0
AB
294 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
295 - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
cd7507cb
PMD
296
297
ae6d692d 298 # Python builds
097aebd8
PMD
299 - name: "GCC Python 3.5 (x86_64-softmmu)"
300 env:
c21d7efc 301 - CONFIG="--target-list=x86_64-softmmu"
7d183c54 302 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
53fefde4 303 language: python
321e6ea5 304 python: 3.5
197be697
DB
305
306
097aebd8
PMD
307 - name: "GCC Python 3.6 (x86_64-softmmu)"
308 env:
c21d7efc 309 - CONFIG="--target-list=x86_64-softmmu"
7d183c54 310 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
53fefde4 311 language: python
321e6ea5 312 python: 3.6
197be697
DB
313
314
aa983ff6 315 # Acceptance (Functional) tests
097aebd8 316 - name: "GCC check-acceptance"
c2e09ad8 317 dist: bionic
097aebd8 318 env:
6fd52d67 319 - CONFIG="--enable-tools --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"
0b98c20a 320 - TEST_CMD="make check-acceptance"
a41f1675 321 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-acceptance"
67892c95
WSM
322 after_script:
323 - 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
a41f1675 324 - du -chs $HOME/avocado/data/cache
aa983ff6
CR
325 addons:
326 apt:
327 packages:
25311649 328 - python3-pil
aa983ff6 329 - python3-pip
c2e09ad8
AB
330 - python3-numpy
331 - python3-opencv
332 - python3-venv
8a837088 333 - rpm2cpio
25311649
PMD
334 - tesseract-ocr
335 - tesseract-ocr-eng
336
337
32265288 338 # Using newer GCC with sanitizers
097aebd8
PMD
339 - name: "GCC9 with sanitizers (softmmu)"
340 addons:
32265288 341 apt:
ac07ffc6 342 update: true
32265288
AB
343 sources:
344 # PPAs for newer toolchains
345 - ubuntu-toolchain-r-test
346 packages:
347 # Extra toolchains
3998c25e
AB
348 - gcc-9
349 - g++-9
32265288
AB
350 # Build dependencies
351 - libaio-dev
352 - libattr1-dev
353 - libbrlapi-dev
354 - libcap-ng-dev
355 - libgnutls-dev
356 - libgtk-3-dev
357 - libiscsi-dev
358 - liblttng-ust-dev
359 - libnfs-dev
360 - libncurses5-dev
361 - libnss3-dev
362 - libpixman-1-dev
363 - libpng12-dev
364 - librados-dev
241e7955
TH
365 - libsdl2-dev
366 - libsdl2-image-dev
32265288
AB
367 - libseccomp-dev
368 - libspice-protocol-dev
369 - libspice-server-dev
b10d49d7 370 - libssh-dev
32265288
AB
371 - liburcu-dev
372 - libusb-1.0-0-dev
95310576 373 - libvte-2.91-dev
32265288
AB
374 - sparse
375 - uuid-dev
376 language: generic
377 compiler: none
378 env:
3998c25e
AB
379 - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9
380 - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-pie --disable-linux-user"
32265288
AB
381 - TEST_CMD=""
382 before_script:
bc4486fb 383 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
db5adeaa 384 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-g3 -O0 -Wno-error=stringop-truncation -fsanitize=thread" --extra-ldflags="-fuse-ld=gold" || { cat config.log && exit 1; }
197be697
DB
385
386
dab3a7c0 387 # Run check-tcg against linux-user
097aebd8
PMD
388 - name: "GCC check-tcg (user)"
389 env:
2efabbe1 390 - CONFIG="--disable-system --enable-debug-tcg"
73217f3e 391 - TEST_BUILD_CMD="make build-tcg"
4f46afd9 392 - TEST_CMD="make check-tcg"
19633df8 393 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
7d183c54 394
dab3a7c0 395
4fbddb5d
AB
396 # Run check-tcg against linux-user (with plugins)
397 # we skip sparc64-linux-user until it has been fixed somewhat
7986f486 398 # we skip cris-linux-user as it doesn't use the common run loop
097aebd8
PMD
399 - name: "GCC plugins check-tcg (user)"
400 env:
7986f486 401 - CONFIG="--disable-system --enable-plugins --enable-debug-tcg --target-list-exclude=sparc64-linux-user,cris-linux-user"
73217f3e 402 - TEST_BUILD_CMD="make build-tcg"
4f46afd9 403 - TEST_CMD="make check-tcg"
19633df8 404 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
7d183c54 405
dab3a7c0
AB
406
407 # Run check-tcg against softmmu targets
097aebd8
PMD
408 - name: "GCC check-tcg (some-softmmu)"
409 env:
2efabbe1 410 - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
c9331e9c 411 - TEST_BUILD_CMD="make build-tcg"
4f46afd9 412 - TEST_CMD="make check-tcg"
19633df8 413 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
61ac3dcc
PMD
414
415
4fbddb5d 416 # Run check-tcg against softmmu targets (with plugins)
097aebd8
PMD
417 - name: "GCC plugins check-tcg (some-softmmu)"
418 env:
19633df8 419 - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
c9331e9c 420 - TEST_BUILD_CMD="make build-tcg"
4f46afd9 421 - TEST_CMD="make check-tcg"
19633df8 422 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
61ac3dcc 423
097aebd8
PMD
424 - name: "[aarch64] GCC check-tcg"
425 arch: arm64
9c5941a9
TH
426 dist: xenial
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
58a1e5b6
WSM
450 # Tests dependencies
451 - genisoimage
9c5941a9
TH
452 env:
453 - TEST_CMD="make check check-tcg V=1"
454 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS}"
455
097aebd8
PMD
456 - name: "[ppc64] GCC check-tcg"
457 arch: ppc64le
9c5941a9
TH
458 dist: xenial
459 addons:
460 apt_packages:
461 - libaio-dev
462 - libattr1-dev
463 - libbrlapi-dev
464 - libcap-ng-dev
465 - libgcrypt20-dev
466 - libgnutls28-dev
467 - libgtk-3-dev
468 - libiscsi-dev
469 - liblttng-ust-dev
470 - libncurses5-dev
471 - libnfs-dev
472 - libnss3-dev
473 - libpixman-1-dev
474 - libpng-dev
475 - librados-dev
476 - libsdl2-dev
477 - libseccomp-dev
478 - liburcu-dev
479 - libusb-1.0-0-dev
480 - libvdeplug-dev
481 - libvte-2.91-dev
58a1e5b6
WSM
482 # Tests dependencies
483 - genisoimage
9c5941a9
TH
484 env:
485 - TEST_CMD="make check check-tcg V=1"
486 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},ppc64le-linux-user"
487
097aebd8
PMD
488 - name: "[s390x] GCC check-tcg"
489 arch: s390x
9c5941a9
TH
490 dist: bionic
491 addons:
492 apt_packages:
493 - libaio-dev
494 - libattr1-dev
495 - libbrlapi-dev
496 - libcap-ng-dev
497 - libgcrypt20-dev
498 - libgnutls28-dev
499 - libgtk-3-dev
500 - libiscsi-dev
501 - liblttng-ust-dev
502 - libncurses5-dev
503 - libnfs-dev
504 - libnss3-dev
505 - libpixman-1-dev
506 - libpng-dev
507 - librados-dev
508 - libsdl2-dev
509 - libseccomp-dev
510 - liburcu-dev
511 - libusb-1.0-0-dev
512 - libvdeplug-dev
513 - libvte-2.91-dev
58a1e5b6
WSM
514 # Tests dependencies
515 - genisoimage
9c5941a9
TH
516 env:
517 - TEST_CMD="make check check-tcg V=1"
518 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user"
31c8cc4f
TH
519 script:
520 - ( cd ${SRC_DIR} ; git submodule update --init roms/SLOF )
521 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
522 - |
523 if [ "$BUILD_RC" -eq 0 ] ; then
524 mv pc-bios/s390-ccw/*.img pc-bios/ ;
525 ${TEST_CMD} ;
526 else
527 $(exit $BUILD_RC);
528 fi
61ac3dcc 529
41e1f0e2
PMD
530 - name: "[s390x] GCC check (KVM)"
531 arch: s390x
532 dist: bionic
533 addons:
534 apt_packages:
535 - libaio-dev
536 - libattr1-dev
537 - libbrlapi-dev
538 - libcap-ng-dev
539 - libgcrypt20-dev
540 - libgnutls28-dev
541 - libgtk-3-dev
542 - libiscsi-dev
543 - liblttng-ust-dev
544 - libncurses5-dev
545 - libnfs-dev
546 - libnss3-dev
547 - libpixman-1-dev
548 - libpng-dev
549 - librados-dev
550 - libsdl2-dev
551 - libseccomp-dev
552 - liburcu-dev
553 - libusb-1.0-0-dev
554 - libvdeplug-dev
555 - libvte-2.91-dev
556 # Tests dependencies
557 - genisoimage
558 env:
559 - TEST_CMD="make check-unit"
560 - CONFIG="--disable-containers --disable-tcg --enable-kvm --disable-tools"
561 script:
562 - ( cd ${SRC_DIR} ; git submodule update --init roms/SLOF )
563 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
564 - |
565 if [ "$BUILD_RC" -eq 0 ] ; then
566 mv pc-bios/s390-ccw/*.img pc-bios/ ;
567 ${TEST_CMD} ;
568 else
569 $(exit $BUILD_RC);
570 fi
571
61ac3dcc
PMD
572 # Release builds
573 # The make-release script expect a QEMU version, so our tag must start with a 'v'.
574 # This is the case when release candidate tags are created.
097aebd8
PMD
575 - name: "Release tarball"
576 if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
61ac3dcc
PMD
577 env:
578 # We want to build from the release tarball
579 - BUILD_DIR="release/build/dir" SRC_DIR="../../.."
580 - BASE_CONFIG="--prefix=$PWD/dist"
581 - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user"
0a7c0ae0 582 - TEST_CMD="make install -j${JOBS}"
61ac3dcc
PMD
583 - QEMU_VERSION="${TRAVIS_TAG:1}"
584 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
61ac3dcc
PMD
585 script:
586 - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2
587 - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2
588 - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION}
bc4486fb
PB
589 - mkdir -p release-build && cd release-build
590 - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
61ac3dcc 591 - make install