]> git.ipfire.org Git - thirdparty/qemu.git/blame - .travis.yml
linux-user, mips: add syscall table generation support
[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
82
197be697 83
cb021cfe
AB
84git:
85 # we want to do this ourselves
86 submodules: false
197be697 87
b3165c87
AB
88# Common first phase for all steps
89before_install:
90 - if command -v ccache ; then ccache --zero-stats ; fi
0a7c0ae0
AB
91 - export JOBS=$(($(getconf _NPROCESSORS_ONLN) + 1))
92 - echo "=== Using ${JOBS} simultaneous jobs ==="
197be697 93
b3165c87 94# Configure step - may be overridden
eebf2940 95before_script:
ebf2ff65 96 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
570f3c77 97 - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
b3165c87
AB
98
99# Main build & test - rarely overridden - controlled by TEST_CMD
eebf2940 100script:
0a7c0ae0 101 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
4f46afd9
AB
102 - |
103 if [ "$BUILD_RC" -eq 0 ] && [ -n "$TEST_BUILD_CMD" ]; then
104 ${TEST_BUILD_CMD} || BUILD_RC=$?
105 else
106 $(exit $BUILD_RC);
107 fi
ec49faac
AB
108 - |
109 if [ "$BUILD_RC" -eq 0 ] ; then
110 ${TEST_CMD} ;
111 else
112 $(exit $BUILD_RC);
113 fi
bcfbf0d5 114after_script:
312995c2 115 - if command -v ccache ; then ccache --show-stats ; fi
197be697
DB
116
117
321e6ea5 118jobs:
fe863ab9 119 include:
097aebd8
PMD
120 - name: "GCC static (user)"
121 env:
c3c1874a 122 - CONFIG="--disable-system --static"
7d183c54 123 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
3e094234
DB
124
125
8c3daf97 126 # we split the system builds as it takes a while to build them all
097aebd8
PMD
127 - name: "GCC (main-softmmu)"
128 env:
8c3daf97 129 - CONFIG="--disable-user --target-list=${MAIN_SOFTMMU_TARGETS}"
7d183c54 130 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
8c3daf97
AB
131
132
097aebd8
PMD
133 - name: "GCC (other-softmmu)"
134 env:
135 - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
7d183c54 136 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
3e094234
DB
137
138
df2bb38e 139 # Just build tools and run minimal unit and softfloat checks
097aebd8
PMD
140 - name: "GCC check-softfloat (user)"
141 env:
df2bb38e
AB
142 - BASE_CONFIG="--enable-tools"
143 - CONFIG="--disable-user --disable-system"
0a7c0ae0 144 - TEST_CMD="make check-unit check-softfloat -j${JOBS}"
7d183c54
PMD
145 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
146
df2bb38e 147
138382c6 148 # --enable-debug implies --enable-debug-tcg, also runs quite a bit slower
097aebd8
PMD
149 - name: "GCC debug (main-softmmu)"
150 env:
138382c6 151 - CONFIG="--enable-debug --target-list=${MAIN_SOFTMMU_TARGETS}"
8fb90e3d 152 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug"
4e6e7df6
AB
153
154
138382c6 155 # TCG debug can be run just on its own and is mostly agnostic to user/softmmu distinctions
097aebd8
PMD
156 - name: "GCC debug (user)"
157 env:
4e6e7df6 158 - CONFIG="--enable-debug-tcg --disable-system"
19633df8 159 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
3e094234
DB
160
161
097aebd8
PMD
162 - name: "GCC some libs disabled (main-softmmu)"
163 env:
aec2927d 164 - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-libusb --disable-replication --target-list=${MAIN_SOFTMMU_TARGETS}"
3e094234
DB
165
166
2f6c2526 167 # Module builds are mostly of interest to major distros
097aebd8
PMD
168 - name: "GCC modules (main-softmmu)"
169 env:
8c3daf97 170 - CONFIG="--enable-modules --target-list=${MAIN_SOFTMMU_TARGETS}"
7d183c54 171 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
3e094234
DB
172
173
f3908ff7
AB
174 # Alternate coroutines implementations are only really of interest to KVM users
175 # However we can't test against KVM on Travis so we can only run unit tests
097aebd8
PMD
176 - name: "check-unit coroutine=ucontext"
177 env:
f3908ff7 178 - CONFIG="--with-coroutine=ucontext --disable-tcg"
0a7c0ae0 179 - TEST_CMD="make check-unit -j${JOBS} V=1"
3e094234
DB
180
181
097aebd8
PMD
182 - name: "check-unit coroutine=sigaltstack"
183 env:
f3908ff7 184 - CONFIG="--with-coroutine=sigaltstack --disable-tcg"
0a7c0ae0 185 - TEST_CMD="make check-unit -j${JOBS} V=1"
3e094234
DB
186
187
956d4506 188 # Check we can build docs and tools (out of tree)
204b30e2
AB
189 - name: "tools and docs (bionic)"
190 dist: bionic
097aebd8 191 env:
956d4506 192 - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
570f3c77
AB
193 - BASE_CONFIG="--enable-tools --enable-docs"
194 - CONFIG="--target-list=x86_64-softmmu,aarch64-linux-user"
7d183c54 195 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
570f3c77
AB
196 addons:
197 apt:
198 packages:
68e5b85e 199 - python3-sphinx
570f3c77
AB
200 - texinfo
201 - perl
202
197be697 203
ae6d692d 204 # Test with Clang for compile portability (Travis uses clang-5.0)
097aebd8
PMD
205 - name: "Clang (user)"
206 env:
c21d7efc 207 - CONFIG="--disable-system"
e2bef011 208 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
ae6d692d 209 compiler: clang
197be697
DB
210
211
097aebd8
PMD
212 - name: "Clang (main-softmmu)"
213 env:
7831147e 214 - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS} "
b08c2ae3 215 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-sanitize"
7831147e
AB
216 compiler: clang
217 before_script:
bc4486fb
PB
218 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
219 - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-fsanitize=undefined -Werror" || { cat config.log && exit 1; }
7831147e
AB
220
221
097aebd8
PMD
222 - name: "Clang (other-softmmu)"
223 env:
8c3daf97 224 - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
e2bef011 225 - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
d9a6b013 226 compiler: clang
197be697
DB
227
228
6c933291 229 # gprof/gcov are GCC features
097aebd8
PMD
230 - name: "GCC gprof/gcov"
231 env:
8c3daf97 232 - CONFIG="--enable-gprof --enable-gcov --disable-pie --target-list=${MAIN_SOFTMMU_TARGETS}"
0708e647
AB
233 after_success:
234 - ${SRC_DIR}/scripts/travis/coverage-summary.sh
197be697
DB
235
236
20885b5b 237 # We manually include builds which we disable "make check" for
097aebd8
PMD
238 - name: "GCC without-default-devices (softmmu)"
239 env:
386dc514 240 - CONFIG="--without-default-devices --disable-user"
7d183c54 241 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
20885b5b
PB
242 - TEST_CMD=""
243
244
3edaa995 245 # Check the TCG interpreter (TCI)
097aebd8
PMD
246 - name: "GCC TCI"
247 env:
3edaa995
TH
248 - CONFIG="--enable-debug-tcg --enable-tcg-interpreter --disable-kvm --disable-containers
249 --target-list=alpha-softmmu,arm-softmmu,hppa-softmmu,m68k-softmmu,microblaze-softmmu,moxie-softmmu,ppc-softmmu,s390x-softmmu,x86_64-softmmu"
250 - TEST_CMD="make check-qtest check-tcg V=1"
197be697
DB
251
252
f8309de9 253 # We don't need to exercise every backend with every front-end
097aebd8
PMD
254 - name: "GCC trace log,simple,syslog (user)"
255 env:
c21d7efc
DB
256 - CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
257 - TEST_CMD=""
197be697
DB
258
259
097aebd8
PMD
260 - name: "GCC trace ftrace (x86_64-softmmu)"
261 env:
c21d7efc
DB
262 - CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
263 - TEST_CMD=""
197be697
DB
264
265
097aebd8
PMD
266 - name: "GCC trace ust (x86_64-softmmu)"
267 env:
c21d7efc
DB
268 - CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
269 - TEST_CMD=""
197be697
DB
270
271
fb224688 272 # MacOSX builds - cirrus.yml also tests some MacOS builds including latest Xcode
197be697 273
097aebd8
PMD
274 - name: "OSX Xcode 10.3"
275 env:
af17e7e7 276 - BASE_CONFIG="--disable-docs --enable-tools"
cd7507cb
PMD
277 - CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
278 os: osx
0cb3e7ba 279 osx_image: xcode10.3
cd7507cb 280 compiler: clang
289c8e59
AB
281 addons:
282 homebrew:
283 packages:
284 - ccache
285 - glib
286 - pixman
287 - gnu-sed
288 - python
289 update: true
6e3bd8a0 290 before_script:
289c8e59 291 - brew link --overwrite python
6e3bd8a0 292 - export PATH="/usr/local/opt/ccache/libexec:$PATH"
6e3bd8a0
AB
293 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
294 - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
cd7507cb
PMD
295
296
ae6d692d 297 # Python builds
097aebd8
PMD
298 - name: "GCC Python 3.5 (x86_64-softmmu)"
299 env:
c21d7efc 300 - CONFIG="--target-list=x86_64-softmmu"
7d183c54 301 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
53fefde4 302 language: python
321e6ea5 303 python: 3.5
197be697
DB
304
305
097aebd8
PMD
306 - name: "GCC Python 3.6 (x86_64-softmmu)"
307 env:
c21d7efc 308 - CONFIG="--target-list=x86_64-softmmu"
7d183c54 309 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
53fefde4 310 language: python
321e6ea5 311 python: 3.6
197be697
DB
312
313
aa983ff6 314 # Acceptance (Functional) tests
097aebd8 315 - name: "GCC check-acceptance"
c2e09ad8 316 dist: bionic
097aebd8 317 env:
b0065e1f 318 - 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"
0b98c20a 319 - TEST_CMD="make check-acceptance"
67892c95
WSM
320 after_script:
321 - 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
aa983ff6
CR
322 addons:
323 apt:
324 packages:
25311649 325 - python3-pil
aa983ff6 326 - python3-pip
c2e09ad8
AB
327 - python3-numpy
328 - python3-opencv
329 - python3-venv
8a837088 330 - rpm2cpio
25311649
PMD
331 - tesseract-ocr
332 - tesseract-ocr-eng
333
334
32265288 335 # Using newer GCC with sanitizers
097aebd8
PMD
336 - name: "GCC9 with sanitizers (softmmu)"
337 addons:
32265288 338 apt:
ac07ffc6 339 update: true
32265288
AB
340 sources:
341 # PPAs for newer toolchains
342 - ubuntu-toolchain-r-test
343 packages:
344 # Extra toolchains
3998c25e
AB
345 - gcc-9
346 - g++-9
32265288
AB
347 # Build dependencies
348 - libaio-dev
349 - libattr1-dev
350 - libbrlapi-dev
351 - libcap-ng-dev
352 - libgnutls-dev
353 - libgtk-3-dev
354 - libiscsi-dev
355 - liblttng-ust-dev
356 - libnfs-dev
357 - libncurses5-dev
358 - libnss3-dev
359 - libpixman-1-dev
360 - libpng12-dev
361 - librados-dev
241e7955
TH
362 - libsdl2-dev
363 - libsdl2-image-dev
32265288
AB
364 - libseccomp-dev
365 - libspice-protocol-dev
366 - libspice-server-dev
b10d49d7 367 - libssh-dev
32265288
AB
368 - liburcu-dev
369 - libusb-1.0-0-dev
95310576 370 - libvte-2.91-dev
32265288
AB
371 - sparse
372 - uuid-dev
373 language: generic
374 compiler: none
375 env:
3998c25e
AB
376 - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9
377 - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-pie --disable-linux-user"
32265288
AB
378 - TEST_CMD=""
379 before_script:
bc4486fb 380 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
db5adeaa 381 - ${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
382
383
dab3a7c0 384 # Run check-tcg against linux-user
097aebd8
PMD
385 - name: "GCC check-tcg (user)"
386 env:
2efabbe1 387 - CONFIG="--disable-system --enable-debug-tcg"
73217f3e 388 - TEST_BUILD_CMD="make build-tcg"
4f46afd9 389 - TEST_CMD="make check-tcg"
19633df8 390 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
7d183c54 391
dab3a7c0 392
4fbddb5d
AB
393 # Run check-tcg against linux-user (with plugins)
394 # we skip sparc64-linux-user until it has been fixed somewhat
7986f486 395 # we skip cris-linux-user as it doesn't use the common run loop
097aebd8
PMD
396 - name: "GCC plugins check-tcg (user)"
397 env:
7986f486 398 - CONFIG="--disable-system --enable-plugins --enable-debug-tcg --target-list-exclude=sparc64-linux-user,cris-linux-user"
73217f3e 399 - TEST_BUILD_CMD="make build-tcg"
4f46afd9 400 - TEST_CMD="make check-tcg"
19633df8 401 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
7d183c54 402
dab3a7c0
AB
403
404 # Run check-tcg against softmmu targets
097aebd8
PMD
405 - name: "GCC check-tcg (some-softmmu)"
406 env:
2efabbe1 407 - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
c9331e9c 408 - TEST_BUILD_CMD="make build-tcg"
4f46afd9 409 - TEST_CMD="make check-tcg"
19633df8 410 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
61ac3dcc
PMD
411
412
4fbddb5d 413 # Run check-tcg against softmmu targets (with plugins)
097aebd8
PMD
414 - name: "GCC plugins check-tcg (some-softmmu)"
415 env:
19633df8 416 - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
c9331e9c 417 - TEST_BUILD_CMD="make build-tcg"
4f46afd9 418 - TEST_CMD="make check-tcg"
19633df8 419 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
61ac3dcc 420
097aebd8
PMD
421 - name: "[aarch64] GCC check-tcg"
422 arch: arm64
9c5941a9
TH
423 dist: xenial
424 addons:
425 apt_packages:
426 - libaio-dev
427 - libattr1-dev
428 - libbrlapi-dev
429 - libcap-ng-dev
430 - libgcrypt20-dev
431 - libgnutls28-dev
432 - libgtk-3-dev
433 - libiscsi-dev
434 - liblttng-ust-dev
435 - libncurses5-dev
436 - libnfs-dev
437 - libnss3-dev
438 - libpixman-1-dev
439 - libpng-dev
440 - librados-dev
441 - libsdl2-dev
442 - libseccomp-dev
443 - liburcu-dev
444 - libusb-1.0-0-dev
445 - libvdeplug-dev
446 - libvte-2.91-dev
58a1e5b6
WSM
447 # Tests dependencies
448 - genisoimage
9c5941a9
TH
449 env:
450 - TEST_CMD="make check check-tcg V=1"
451 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS}"
452
097aebd8
PMD
453 - name: "[ppc64] GCC check-tcg"
454 arch: ppc64le
9c5941a9
TH
455 dist: xenial
456 addons:
457 apt_packages:
458 - libaio-dev
459 - libattr1-dev
460 - libbrlapi-dev
461 - libcap-ng-dev
462 - libgcrypt20-dev
463 - libgnutls28-dev
464 - libgtk-3-dev
465 - libiscsi-dev
466 - liblttng-ust-dev
467 - libncurses5-dev
468 - libnfs-dev
469 - libnss3-dev
470 - libpixman-1-dev
471 - libpng-dev
472 - librados-dev
473 - libsdl2-dev
474 - libseccomp-dev
475 - liburcu-dev
476 - libusb-1.0-0-dev
477 - libvdeplug-dev
478 - libvte-2.91-dev
58a1e5b6
WSM
479 # Tests dependencies
480 - genisoimage
9c5941a9
TH
481 env:
482 - TEST_CMD="make check check-tcg V=1"
483 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},ppc64le-linux-user"
484
097aebd8
PMD
485 - name: "[s390x] GCC check-tcg"
486 arch: s390x
9c5941a9
TH
487 dist: bionic
488 addons:
489 apt_packages:
490 - libaio-dev
491 - libattr1-dev
492 - libbrlapi-dev
493 - libcap-ng-dev
494 - libgcrypt20-dev
495 - libgnutls28-dev
496 - libgtk-3-dev
497 - libiscsi-dev
498 - liblttng-ust-dev
499 - libncurses5-dev
500 - libnfs-dev
501 - libnss3-dev
502 - libpixman-1-dev
503 - libpng-dev
504 - librados-dev
505 - libsdl2-dev
506 - libseccomp-dev
507 - liburcu-dev
508 - libusb-1.0-0-dev
509 - libvdeplug-dev
510 - libvte-2.91-dev
58a1e5b6
WSM
511 # Tests dependencies
512 - genisoimage
9c5941a9
TH
513 env:
514 - TEST_CMD="make check check-tcg V=1"
515 - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user"
31c8cc4f
TH
516 script:
517 - ( cd ${SRC_DIR} ; git submodule update --init roms/SLOF )
518 - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
519 - |
520 if [ "$BUILD_RC" -eq 0 ] ; then
521 mv pc-bios/s390-ccw/*.img pc-bios/ ;
522 ${TEST_CMD} ;
523 else
524 $(exit $BUILD_RC);
525 fi
61ac3dcc
PMD
526
527 # Release builds
528 # The make-release script expect a QEMU version, so our tag must start with a 'v'.
529 # This is the case when release candidate tags are created.
097aebd8
PMD
530 - name: "Release tarball"
531 if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
61ac3dcc
PMD
532 env:
533 # We want to build from the release tarball
534 - BUILD_DIR="release/build/dir" SRC_DIR="../../.."
535 - BASE_CONFIG="--prefix=$PWD/dist"
536 - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user"
0a7c0ae0 537 - TEST_CMD="make install -j${JOBS}"
61ac3dcc
PMD
538 - QEMU_VERSION="${TRAVIS_TAG:1}"
539 - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
61ac3dcc
PMD
540 script:
541 - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2
542 - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2
543 - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION}
bc4486fb
PB
544 - mkdir -p release-build && cd release-build
545 - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
61ac3dcc 546 - make install