]>
Commit | Line | Data |
---|---|---|
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 | |
4 | dist: xenial | |
fe863ab9 | 5 | language: c |
fe863ab9 AB |
6 | compiler: |
7 | - gcc | |
4bc629b2 | 8 | cache: |
5ef9c53c PMD |
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 | |
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 |
22 | addons: |
23 | apt: | |
24 | packages: | |
32265288 | 25 | # Build dependencies |
692d162c AB |
26 | - libaio-dev |
27 | - libattr1-dev | |
28 | - libbrlapi-dev | |
29 | - libcap-ng-dev | |
7524a39d | 30 | - libgcc-4.8-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 |
692d162c AB |
51 | - sparse |
52 | - uuid-dev | |
0708e647 | 53 | - gcovr |
58a1e5b6 WSM |
54 | # Tests dependencies |
55 | - genisoimage | |
692d162c | 56 | |
197be697 | 57 | |
cb4c2536 PK |
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" | |
39d16d29 AB |
61 | notifications: |
62 | irc: | |
63 | channels: | |
cb4c2536 | 64 | - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM=" |
39d16d29 AB |
65 | on_success: change |
66 | on_failure: always | |
197be697 DB |
67 | |
68 | ||
fe863ab9 AB |
69 | env: |
70 | global: | |
bc4486fb PB |
71 | - SRC_DIR=".." |
72 | - BUILD_DIR="build" | |
570f3c77 | 73 | - BASE_CONFIG="--disable-docs --disable-tools" |
05273a43 | 74 | - TEST_CMD="make check V=1" |
8c3daf97 | 75 | # This is broadly a list of "mainline" softmmu targets which have support across the major distros |
6e988880 | 76 | - MAIN_SOFTMMU_TARGETS="aarch64-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu" |
bcfbf0d5 PMD |
77 | - CCACHE_SLOPPINESS="include_file_ctime,include_file_mtime" |
78 | - CCACHE_MAXSIZE=1G | |
79 | ||
197be697 | 80 | |
cb021cfe AB |
81 | git: |
82 | # we want to do this ourselves | |
83 | submodules: false | |
197be697 DB |
84 | |
85 | ||
eebf2940 | 86 | before_script: |
312995c2 | 87 | - if command -v ccache ; then ccache --zero-stats ; fi |
ebf2ff65 | 88 | - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR} |
570f3c77 | 89 | - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; } |
eebf2940 | 90 | script: |
3b353883 WSM |
91 | - BUILD_RC=0 && make -j3 || BUILD_RC=$? |
92 | - if [ "$BUILD_RC" -eq 0 ] ; then travis_retry ${TEST_CMD} ; else $(exit $BUILD_RC); fi | |
bcfbf0d5 | 93 | after_script: |
312995c2 | 94 | - if command -v ccache ; then ccache --show-stats ; fi |
197be697 DB |
95 | |
96 | ||
fe863ab9 | 97 | matrix: |
fe863ab9 | 98 | include: |
c21d7efc | 99 | - env: |
c3c1874a | 100 | - CONFIG="--disable-system --static" |
7d183c54 | 101 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
3e094234 DB |
102 | |
103 | ||
8c3daf97 AB |
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}" | |
7d183c54 | 107 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
8c3daf97 AB |
108 | |
109 | ||
c21d7efc | 110 | - env: |
8c3daf97 | 111 | - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}" |
7d183c54 | 112 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
3e094234 DB |
113 | |
114 | ||
df2bb38e AB |
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" | |
7d183c54 PMD |
120 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
121 | ||
df2bb38e | 122 | |
138382c6 | 123 | # --enable-debug implies --enable-debug-tcg, also runs quite a bit slower |
c21d7efc | 124 | - env: |
138382c6 | 125 | - CONFIG="--enable-debug --target-list=${MAIN_SOFTMMU_TARGETS}" |
8fb90e3d | 126 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug" |
4e6e7df6 AB |
127 | |
128 | ||
138382c6 | 129 | # TCG debug can be run just on its own and is mostly agnostic to user/softmmu distinctions |
4e6e7df6 AB |
130 | - env: |
131 | - CONFIG="--enable-debug-tcg --disable-system" | |
19633df8 | 132 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" |
3e094234 DB |
133 | |
134 | ||
c21d7efc | 135 | - env: |
aec2927d | 136 | - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-libusb --disable-replication --target-list=${MAIN_SOFTMMU_TARGETS}" |
3e094234 DB |
137 | |
138 | ||
2f6c2526 | 139 | # Module builds are mostly of interest to major distros |
c21d7efc | 140 | - env: |
8c3daf97 | 141 | - CONFIG="--enable-modules --target-list=${MAIN_SOFTMMU_TARGETS}" |
7d183c54 | 142 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
3e094234 DB |
143 | |
144 | ||
f3908ff7 AB |
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 | |
c21d7efc | 147 | - env: |
f3908ff7 AB |
148 | - CONFIG="--with-coroutine=ucontext --disable-tcg" |
149 | - TEST_CMD="make check-unit -j3 V=1" | |
3e094234 DB |
150 | |
151 | ||
c21d7efc | 152 | - env: |
f3908ff7 AB |
153 | - CONFIG="--with-coroutine=sigaltstack --disable-tcg" |
154 | - TEST_CMD="make check-unit -j3 V=1" | |
3e094234 DB |
155 | |
156 | ||
956d4506 | 157 | # Check we can build docs and tools (out of tree) |
570f3c77 | 158 | - env: |
956d4506 | 159 | - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.." |
570f3c77 AB |
160 | - BASE_CONFIG="--enable-tools --enable-docs" |
161 | - CONFIG="--target-list=x86_64-softmmu,aarch64-linux-user" | |
7d183c54 | 162 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
570f3c77 AB |
163 | addons: |
164 | apt: | |
165 | packages: | |
166 | - python-sphinx | |
167 | - texinfo | |
168 | - perl | |
169 | ||
197be697 | 170 | |
ae6d692d | 171 | # Test with Clang for compile portability (Travis uses clang-5.0) |
c21d7efc DB |
172 | - env: |
173 | - CONFIG="--disable-system" | |
e2bef011 | 174 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default" |
ae6d692d | 175 | compiler: clang |
197be697 DB |
176 | |
177 | ||
7831147e AB |
178 | - env: |
179 | - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS} " | |
b08c2ae3 | 180 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-sanitize" |
7831147e AB |
181 | compiler: clang |
182 | before_script: | |
bc4486fb PB |
183 | - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR} |
184 | - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-fsanitize=undefined -Werror" || { cat config.log && exit 1; } | |
7831147e AB |
185 | |
186 | ||
8c3daf97 AB |
187 | - env: |
188 | - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}" | |
e2bef011 | 189 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default" |
d9a6b013 | 190 | compiler: clang |
197be697 DB |
191 | |
192 | ||
6c933291 | 193 | # gprof/gcov are GCC features |
c21d7efc | 194 | - env: |
8c3daf97 | 195 | - CONFIG="--enable-gprof --enable-gcov --disable-pie --target-list=${MAIN_SOFTMMU_TARGETS}" |
0708e647 AB |
196 | after_success: |
197 | - ${SRC_DIR}/scripts/travis/coverage-summary.sh | |
197be697 DB |
198 | |
199 | ||
20885b5b PB |
200 | # We manually include builds which we disable "make check" for |
201 | - env: | |
386dc514 | 202 | - CONFIG="--without-default-devices --disable-user" |
7d183c54 | 203 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
20885b5b PB |
204 | - TEST_CMD="" |
205 | ||
206 | ||
3edaa995 | 207 | # Check the TCG interpreter (TCI) |
c21d7efc | 208 | - env: |
3edaa995 TH |
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" | |
197be697 DB |
212 | |
213 | ||
f8309de9 | 214 | # We don't need to exercise every backend with every front-end |
c21d7efc DB |
215 | - env: |
216 | - CONFIG="--enable-trace-backends=log,simple,syslog --disable-system" | |
217 | - TEST_CMD="" | |
197be697 DB |
218 | |
219 | ||
c21d7efc DB |
220 | - env: |
221 | - CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu" | |
222 | - TEST_CMD="" | |
197be697 DB |
223 | |
224 | ||
c21d7efc DB |
225 | - env: |
226 | - CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu" | |
227 | - TEST_CMD="" | |
197be697 DB |
228 | |
229 | ||
fb224688 | 230 | # MacOSX builds - cirrus.yml also tests some MacOS builds including latest Xcode |
197be697 | 231 | |
cd7507cb PMD |
232 | - env: |
233 | - CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu" | |
234 | os: osx | |
0cb3e7ba | 235 | osx_image: xcode10.3 |
cd7507cb | 236 | compiler: clang |
289c8e59 AB |
237 | addons: |
238 | homebrew: | |
239 | packages: | |
240 | - ccache | |
241 | - glib | |
242 | - pixman | |
243 | - gnu-sed | |
244 | - python | |
245 | update: true | |
6e3bd8a0 | 246 | before_script: |
289c8e59 | 247 | - brew link --overwrite python |
6e3bd8a0 AB |
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; } | |
cd7507cb PMD |
252 | |
253 | ||
ae6d692d | 254 | # Python builds |
c21d7efc DB |
255 | - env: |
256 | - CONFIG="--target-list=x86_64-softmmu" | |
7d183c54 | 257 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
53fefde4 | 258 | language: python |
8e73a3c5 | 259 | python: |
49233804 | 260 | - "3.5" |
197be697 DB |
261 | |
262 | ||
c21d7efc DB |
263 | - env: |
264 | - CONFIG="--target-list=x86_64-softmmu" | |
7d183c54 | 265 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default" |
53fefde4 | 266 | language: python |
8e73a3c5 DB |
267 | python: |
268 | - "3.6" | |
197be697 DB |
269 | |
270 | ||
aa983ff6 | 271 | # Acceptance (Functional) tests |
c21d7efc | 272 | - env: |
5311cb12 | 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" |
0b98c20a | 274 | - TEST_CMD="make check-acceptance" |
67892c95 WSM |
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 | |
aa983ff6 CR |
277 | addons: |
278 | apt: | |
279 | packages: | |
25311649 | 280 | - python3-pil |
aa983ff6 | 281 | - python3-pip |
95310576 | 282 | - python3.5-venv |
25311649 PMD |
283 | - tesseract-ocr |
284 | - tesseract-ocr-eng | |
285 | ||
286 | ||
32265288 AB |
287 | # Using newer GCC with sanitizers |
288 | - addons: | |
289 | apt: | |
ac07ffc6 | 290 | update: true |
32265288 AB |
291 | sources: |
292 | # PPAs for newer toolchains | |
293 | - ubuntu-toolchain-r-test | |
294 | packages: | |
295 | # Extra toolchains | |
3998c25e AB |
296 | - gcc-9 |
297 | - g++-9 | |
32265288 AB |
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 | |
241e7955 TH |
313 | - libsdl2-dev |
314 | - libsdl2-image-dev | |
32265288 AB |
315 | - libseccomp-dev |
316 | - libspice-protocol-dev | |
317 | - libspice-server-dev | |
b10d49d7 | 318 | - libssh-dev |
32265288 AB |
319 | - liburcu-dev |
320 | - libusb-1.0-0-dev | |
95310576 | 321 | - libvte-2.91-dev |
32265288 AB |
322 | - sparse |
323 | - uuid-dev | |
324 | language: generic | |
325 | compiler: none | |
326 | env: | |
3998c25e AB |
327 | - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9 |
328 | - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-pie --disable-linux-user" | |
32265288 AB |
329 | - TEST_CMD="" |
330 | before_script: | |
bc4486fb | 331 | - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR} |
db5adeaa | 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; } |
197be697 DB |
333 | |
334 | ||
dab3a7c0 | 335 | # Run check-tcg against linux-user |
65b26da4 | 336 | - env: |
2efabbe1 | 337 | - CONFIG="--disable-system --enable-debug-tcg" |
e2576f9b | 338 | - TEST_CMD="make -j3 check-tcg V=1" |
19633df8 | 339 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" |
7d183c54 | 340 | |
dab3a7c0 | 341 | |
4fbddb5d AB |
342 | # Run check-tcg against linux-user (with plugins) |
343 | # we skip sparc64-linux-user until it has been fixed somewhat | |
344 | - env: | |
19633df8 | 345 | - CONFIG="--disable-system --enable-plugins --enable-debug-tcg --target-list-exclude=sparc64-linux-user" |
4fbddb5d | 346 | - TEST_CMD="make -j3 check-tcg V=1" |
19633df8 | 347 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" |
7d183c54 | 348 | |
dab3a7c0 AB |
349 | |
350 | # Run check-tcg against softmmu targets | |
351 | - env: | |
2efabbe1 | 352 | - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu" |
dab3a7c0 | 353 | - TEST_CMD="make -j3 check-tcg V=1" |
19633df8 | 354 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" |
61ac3dcc PMD |
355 | |
356 | ||
4fbddb5d AB |
357 | # Run check-tcg against softmmu targets (with plugins) |
358 | - env: | |
19633df8 | 359 | - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu" |
4fbddb5d | 360 | - TEST_CMD="make -j3 check-tcg V=1" |
19633df8 | 361 | - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg" |
61ac3dcc | 362 | |
9c5941a9 TH |
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 | |
58a1e5b6 WSM |
388 | # Tests dependencies |
389 | - genisoimage | |
9c5941a9 TH |
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 | |
58a1e5b6 WSM |
419 | # Tests dependencies |
420 | - genisoimage | |
9c5941a9 TH |
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 | |
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},s390x-linux-user" | |
61ac3dcc PMD |
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} | |
bc4486fb PB |
475 | - mkdir -p release-build && cd release-build |
476 | - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; } | |
61ac3dcc | 477 | - make install |