xref: /openbmc/qemu/.travis.yml (revision 6fd52d67)
195310576SAlex Bennée# The current Travis default is a VM based 16.04 Xenial on GCE
295310576SAlex Bennée# Additional builds with specific requirements for a full VM need to
395310576SAlex Bennée# be added as additional matrix: entries later on
4321e6ea5SWainer dos Santos Moschettaos: linux
595310576SAlex Bennéedist: xenial
6fe863ab9SAlex Bennéelanguage: c
7fe863ab9SAlex Bennéecompiler:
8fe863ab9SAlex Bennée  - gcc
94bc629b2SPhilippe Mathieu-Daudécache:
105ef9c53cSPhilippe Mathieu-Daudé  # There is one cache per branch and compiler version.
115ef9c53cSPhilippe Mathieu-Daudé  # characteristics of each job are used to identify the cache:
125ef9c53cSPhilippe Mathieu-Daudé  # - OS name (currently, linux, osx, or windows)
135ef9c53cSPhilippe Mathieu-Daudé  # - OS distribution (for Linux, xenial, trusty, or precise)
145ef9c53cSPhilippe Mathieu-Daudé  # - macOS image name (e.g., xcode7.2)
155ef9c53cSPhilippe Mathieu-Daudé  # - Names and values of visible environment variables set in .travis.yml or Settings panel
16731cbb64SPhilippe Mathieu-Daudé  timeout: 1200
174bc629b2SPhilippe Mathieu-Daudé  ccache: true
186e189d78SPhilippe Mathieu-Daudé  pip: true
19c1073e44SPhilippe Mathieu-Daudé  directories:
20c1073e44SPhilippe Mathieu-Daudé  - $HOME/avocado/data/cache
21197be697SDaniel P. Berrangé
22197be697SDaniel P. Berrangé
23692d162cSAlex Bennéeaddons:
24692d162cSAlex Bennée  apt:
25692d162cSAlex Bennée    packages:
2632265288SAlex Bennée      # Build dependencies
27692d162cSAlex Bennée      - libaio-dev
28692d162cSAlex Bennée      - libattr1-dev
29692d162cSAlex Bennée      - libbrlapi-dev
30692d162cSAlex Bennée      - libcap-ng-dev
317524a39dSPhilippe Mathieu-Daudé      - libgcc-4.8-dev
323c7a8b41SThomas Huth      - libgnutls28-dev
33692d162cSAlex Bennée      - libgtk-3-dev
34692d162cSAlex Bennée      - libiscsi-dev
35692d162cSAlex Bennée      - liblttng-ust-dev
36692d162cSAlex Bennée      - libncurses5-dev
37d83414e1SMarc-André Lureau      - libnfs-dev
38692d162cSAlex Bennée      - libnss3-dev
39692d162cSAlex Bennée      - libpixman-1-dev
403c7a8b41SThomas Huth      - libpng-dev
41692d162cSAlex Bennée      - librados-dev
42241e7955SThomas Huth      - libsdl2-dev
43241e7955SThomas Huth      - libsdl2-image-dev
44692d162cSAlex Bennée      - libseccomp-dev
45692d162cSAlex Bennée      - libspice-protocol-dev
46692d162cSAlex Bennée      - libspice-server-dev
47b10d49d7SPino Toscano      - libssh-dev
48692d162cSAlex Bennée      - liburcu-dev
49692d162cSAlex Bennée      - libusb-1.0-0-dev
507c1dd4d1SThomas Huth      - libvdeplug-dev
5195310576SAlex Bennée      - libvte-2.91-dev
523a678481SJuan Quintela      - libzstd-dev
53692d162cSAlex Bennée      - sparse
54692d162cSAlex Bennée      - uuid-dev
550708e647SAlex Bennée      - gcovr
5658a1e5b6SWainer dos Santos Moschetta      # Tests dependencies
5758a1e5b6SWainer dos Santos Moschetta      - genisoimage
58692d162cSAlex Bennée
59197be697SDaniel P. Berrangé
60cb4c2536SPranith Kumar# The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
61cb4c2536SPranith Kumar# to prevent IRC notifications from forks. This was created using:
62cb4c2536SPranith Kumar# $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
6339d16d29SAlex Bennéenotifications:
6439d16d29SAlex Bennée  irc:
6539d16d29SAlex Bennée    channels:
66cb4c2536SPranith Kumar      - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
6739d16d29SAlex Bennée    on_success: change
6839d16d29SAlex Bennée    on_failure: always
69197be697SDaniel P. Berrangé
70197be697SDaniel P. Berrangé
71fe863ab9SAlex Bennéeenv:
72fe863ab9SAlex Bennée  global:
73bc4486fbSPaolo Bonzini    - SRC_DIR=".."
74bc4486fbSPaolo Bonzini    - BUILD_DIR="build"
75570f3c77SAlex Bennée    - BASE_CONFIG="--disable-docs --disable-tools"
764f46afd9SAlex Bennée    - TEST_BUILD_CMD=""
7705273a43SAlex Bennée    - TEST_CMD="make check V=1"
788c3daf97SAlex Bennée    # This is broadly a list of "mainline" softmmu targets which have support across the major distros
796e988880SAlex Bennée    - MAIN_SOFTMMU_TARGETS="aarch64-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
80bcfbf0d5SPhilippe Mathieu-Daudé    - CCACHE_SLOPPINESS="include_file_ctime,include_file_mtime"
81bcfbf0d5SPhilippe Mathieu-Daudé    - CCACHE_MAXSIZE=1G
82bcfbf0d5SPhilippe Mathieu-Daudé
83197be697SDaniel P. Berrangé
84cb021cfeSAlex Bennéegit:
85cb021cfeSAlex Bennée  # we want to do this ourselves
86cb021cfeSAlex Bennée  submodules: false
87197be697SDaniel P. Berrangé
88b3165c87SAlex Bennée# Common first phase for all steps
89b3165c87SAlex Bennéebefore_install:
90312995c2SThomas Huth  - if command -v ccache ; then ccache --zero-stats ; fi
910a7c0ae0SAlex Bennée  - export JOBS=$(($(getconf _NPROCESSORS_ONLN) + 1))
920a7c0ae0SAlex Bennée  - echo "=== Using ${JOBS} simultaneous jobs ==="
93b3165c87SAlex Bennée
94b3165c87SAlex Bennée# Configure step - may be overridden
95b3165c87SAlex Bennéebefore_script:
96ebf2ff65SPhilippe Mathieu-Daudé  - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
97570f3c77SAlex Bennée  - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
98b3165c87SAlex Bennée
99b3165c87SAlex Bennée# Main build & test - rarely overridden - controlled by TEST_CMD
100eebf2940SAlex Bennéescript:
1010a7c0ae0SAlex Bennée  - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
1024f46afd9SAlex Bennée  - |
1034f46afd9SAlex Bennée    if [ "$BUILD_RC" -eq 0 ] && [ -n "$TEST_BUILD_CMD" ]; then
1044f46afd9SAlex Bennée        ${TEST_BUILD_CMD} || BUILD_RC=$?
1054f46afd9SAlex Bennée    else
1064f46afd9SAlex Bennée        $(exit $BUILD_RC);
1074f46afd9SAlex Bennée    fi
108ec49faacSAlex Bennée  - |
109ec49faacSAlex Bennée    if [ "$BUILD_RC" -eq 0 ] ; then
110ec49faacSAlex Bennée        ${TEST_CMD} ;
111ec49faacSAlex Bennée    else
112ec49faacSAlex Bennée        $(exit $BUILD_RC);
113ec49faacSAlex Bennée    fi
114bcfbf0d5SPhilippe Mathieu-Daudéafter_script:
115312995c2SThomas Huth  - if command -v ccache ; then ccache --show-stats ; fi
116197be697SDaniel P. Berrangé
117197be697SDaniel P. Berrangé
118321e6ea5SWainer dos Santos Moschettajobs:
119fe863ab9SAlex Bennée  include:
120097aebd8SPhilippe Mathieu-Daudé    - name: "GCC static (user)"
121097aebd8SPhilippe Mathieu-Daudé      env:
122c3c1874aSAlex Bennée        - CONFIG="--disable-system --static"
1237d183c54SPhilippe Mathieu-Daudé        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
1243e094234SDaniel P. Berrangé
1253e094234SDaniel P. Berrangé
1268c3daf97SAlex Bennée    # we split the system builds as it takes a while to build them all
127097aebd8SPhilippe Mathieu-Daudé    - name: "GCC (main-softmmu)"
128097aebd8SPhilippe Mathieu-Daudé      env:
1298c3daf97SAlex Bennée        - CONFIG="--disable-user --target-list=${MAIN_SOFTMMU_TARGETS}"
1307d183c54SPhilippe Mathieu-Daudé        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
1318c3daf97SAlex Bennée
1328c3daf97SAlex Bennée
133097aebd8SPhilippe Mathieu-Daudé    - name: "GCC (other-softmmu)"
134097aebd8SPhilippe Mathieu-Daudé      env:
1358c3daf97SAlex Bennée       - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
1367d183c54SPhilippe Mathieu-Daudé        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
1373e094234SDaniel P. Berrangé
1383e094234SDaniel P. Berrangé
139df2bb38eSAlex Bennée    # Just build tools and run minimal unit and softfloat checks
140097aebd8SPhilippe Mathieu-Daudé    - name: "GCC check-softfloat (user)"
141097aebd8SPhilippe Mathieu-Daudé      env:
142df2bb38eSAlex Bennée        - BASE_CONFIG="--enable-tools"
143df2bb38eSAlex Bennée        - CONFIG="--disable-user --disable-system"
1440a7c0ae0SAlex Bennée        - TEST_CMD="make check-unit check-softfloat -j${JOBS}"
1457d183c54SPhilippe Mathieu-Daudé        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
1467d183c54SPhilippe Mathieu-Daudé
147df2bb38eSAlex Bennée
148138382c6SAlex Bennée    # --enable-debug implies --enable-debug-tcg, also runs quite a bit slower
149097aebd8SPhilippe Mathieu-Daudé    - name: "GCC debug (main-softmmu)"
150097aebd8SPhilippe Mathieu-Daudé      env:
151138382c6SAlex Bennée        - CONFIG="--enable-debug --target-list=${MAIN_SOFTMMU_TARGETS}"
1528fb90e3dSPhilippe Mathieu-Daudé        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug"
1534e6e7df6SAlex Bennée
1544e6e7df6SAlex Bennée
155138382c6SAlex Bennée    # TCG debug can be run just on its own and is mostly agnostic to user/softmmu distinctions
156097aebd8SPhilippe Mathieu-Daudé    - name: "GCC debug (user)"
157097aebd8SPhilippe Mathieu-Daudé      env:
1584e6e7df6SAlex Bennée        - CONFIG="--enable-debug-tcg --disable-system"
15919633df8SAlex Bennée        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
1603e094234SDaniel P. Berrangé
1613e094234SDaniel P. Berrangé
162097aebd8SPhilippe Mathieu-Daudé    - name: "GCC some libs disabled (main-softmmu)"
163097aebd8SPhilippe Mathieu-Daudé      env:
164aec2927dSAlex Bennée        - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-libusb --disable-replication --target-list=${MAIN_SOFTMMU_TARGETS}"
1653e094234SDaniel P. Berrangé
1663e094234SDaniel P. Berrangé
1672f6c2526SAlex Bennée    # Module builds are mostly of interest to major distros
168097aebd8SPhilippe Mathieu-Daudé    - name: "GCC modules (main-softmmu)"
169097aebd8SPhilippe Mathieu-Daudé      env:
1708c3daf97SAlex Bennée        - CONFIG="--enable-modules --target-list=${MAIN_SOFTMMU_TARGETS}"
1717d183c54SPhilippe Mathieu-Daudé        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
1723e094234SDaniel P. Berrangé
1733e094234SDaniel P. Berrangé
174f3908ff7SAlex Bennée    # Alternate coroutines implementations are only really of interest to KVM users
175f3908ff7SAlex Bennée    # However we can't test against KVM on Travis so we can only run unit tests
176097aebd8SPhilippe Mathieu-Daudé    - name: "check-unit coroutine=ucontext"
177097aebd8SPhilippe Mathieu-Daudé      env:
178f3908ff7SAlex Bennée        - CONFIG="--with-coroutine=ucontext --disable-tcg"
1790a7c0ae0SAlex Bennée        - TEST_CMD="make check-unit -j${JOBS} V=1"
1803e094234SDaniel P. Berrangé
1813e094234SDaniel P. Berrangé
182097aebd8SPhilippe Mathieu-Daudé    - name: "check-unit coroutine=sigaltstack"
183097aebd8SPhilippe Mathieu-Daudé      env:
184f3908ff7SAlex Bennée        - CONFIG="--with-coroutine=sigaltstack --disable-tcg"
1850a7c0ae0SAlex Bennée        - TEST_CMD="make check-unit -j${JOBS} V=1"
1863e094234SDaniel P. Berrangé
1873e094234SDaniel P. Berrangé
188956d4506SAlex Bennée    # Check we can build docs and tools (out of tree)
189204b30e2SAlex Bennée    - name: "tools and docs (bionic)"
190204b30e2SAlex Bennée      dist: bionic
191097aebd8SPhilippe Mathieu-Daudé      env:
192956d4506SAlex Bennée        - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
193570f3c77SAlex Bennée        - BASE_CONFIG="--enable-tools --enable-docs"
194570f3c77SAlex Bennée        - CONFIG="--target-list=x86_64-softmmu,aarch64-linux-user"
1957d183c54SPhilippe Mathieu-Daudé        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
196570f3c77SAlex Bennée      addons:
197570f3c77SAlex Bennée        apt:
198570f3c77SAlex Bennée          packages:
19968e5b85eSAlex Bennée            - python3-sphinx
200570f3c77SAlex Bennée            - texinfo
201570f3c77SAlex Bennée            - perl
202570f3c77SAlex Bennée
203197be697SDaniel P. Berrangé
204ae6d692dSAlex Bennée    # Test with Clang for compile portability (Travis uses clang-5.0)
205097aebd8SPhilippe Mathieu-Daudé    - name: "Clang (user)"
206097aebd8SPhilippe Mathieu-Daudé      env:
207c21d7efcSDaniel P. Berrangé        - CONFIG="--disable-system"
208e2bef011SPhilippe Mathieu-Daudé        - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
209ae6d692dSAlex Bennée      compiler: clang
210197be697SDaniel P. Berrangé
211197be697SDaniel P. Berrangé
212097aebd8SPhilippe Mathieu-Daudé    - name: "Clang (main-softmmu)"
213097aebd8SPhilippe Mathieu-Daudé      env:
2147831147eSAlex Bennée        - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS} "
215b08c2ae3SAlex Bennée        - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-sanitize"
2167831147eSAlex Bennée      compiler: clang
2177831147eSAlex Bennée      before_script:
218bc4486fbSPaolo Bonzini        - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
219bc4486fbSPaolo Bonzini        - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-fsanitize=undefined -Werror" || { cat config.log && exit 1; }
2207831147eSAlex Bennée
2217831147eSAlex Bennée
222097aebd8SPhilippe Mathieu-Daudé    - name: "Clang (other-softmmu)"
223097aebd8SPhilippe Mathieu-Daudé      env:
2248c3daf97SAlex Bennée        - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}"
225e2bef011SPhilippe Mathieu-Daudé        - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default"
226d9a6b013SDaniel P. Berrange      compiler: clang
227197be697SDaniel P. Berrangé
228197be697SDaniel P. Berrangé
2296c933291SAlex Bennée    # gprof/gcov are GCC features
230097aebd8SPhilippe Mathieu-Daudé    - name: "GCC gprof/gcov"
231097aebd8SPhilippe Mathieu-Daudé      env:
2328c3daf97SAlex Bennée        - CONFIG="--enable-gprof --enable-gcov --disable-pie --target-list=${MAIN_SOFTMMU_TARGETS}"
2330708e647SAlex Bennée      after_success:
2340708e647SAlex Bennée        - ${SRC_DIR}/scripts/travis/coverage-summary.sh
235197be697SDaniel P. Berrangé
236197be697SDaniel P. Berrangé
2376c933291SAlex Bennée    # We manually include builds which we disable "make check" for
238097aebd8SPhilippe Mathieu-Daudé    - name: "GCC without-default-devices (softmmu)"
239097aebd8SPhilippe Mathieu-Daudé      env:
240386dc514SAlex Bennée        - CONFIG="--without-default-devices --disable-user"
2417d183c54SPhilippe Mathieu-Daudé        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
24220885b5bSPaolo Bonzini        - TEST_CMD=""
24320885b5bSPaolo Bonzini
24420885b5bSPaolo Bonzini
2453edaa995SThomas Huth    # Check the TCG interpreter (TCI)
246097aebd8SPhilippe Mathieu-Daudé    - name: "GCC TCI"
247097aebd8SPhilippe Mathieu-Daudé      env:
2483edaa995SThomas Huth        - CONFIG="--enable-debug-tcg --enable-tcg-interpreter --disable-kvm --disable-containers
2493edaa995SThomas Huth            --target-list=alpha-softmmu,arm-softmmu,hppa-softmmu,m68k-softmmu,microblaze-softmmu,moxie-softmmu,ppc-softmmu,s390x-softmmu,x86_64-softmmu"
2503edaa995SThomas Huth        - TEST_CMD="make check-qtest check-tcg V=1"
251197be697SDaniel P. Berrangé
252197be697SDaniel P. Berrangé
253f8309de9SAlex Bennée    # We don't need to exercise every backend with every front-end
254097aebd8SPhilippe Mathieu-Daudé    - name: "GCC trace log,simple,syslog (user)"
255097aebd8SPhilippe Mathieu-Daudé      env:
256c21d7efcSDaniel P. Berrangé        - CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
257c21d7efcSDaniel P. Berrangé        - TEST_CMD=""
258197be697SDaniel P. Berrangé
259197be697SDaniel P. Berrangé
260097aebd8SPhilippe Mathieu-Daudé    - name: "GCC trace ftrace (x86_64-softmmu)"
261097aebd8SPhilippe Mathieu-Daudé      env:
262c21d7efcSDaniel P. Berrangé        - CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
263c21d7efcSDaniel P. Berrangé        - TEST_CMD=""
264197be697SDaniel P. Berrangé
265197be697SDaniel P. Berrangé
266097aebd8SPhilippe Mathieu-Daudé    - name: "GCC trace ust (x86_64-softmmu)"
267097aebd8SPhilippe Mathieu-Daudé      env:
268c21d7efcSDaniel P. Berrangé        - CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
269c21d7efcSDaniel P. Berrangé        - TEST_CMD=""
270197be697SDaniel P. Berrangé
271197be697SDaniel P. Berrangé
272fb224688SAlex Bennée    # MacOSX builds - cirrus.yml also tests some MacOS builds including latest Xcode
273197be697SDaniel P. Berrangé
274097aebd8SPhilippe Mathieu-Daudé    - name: "OSX Xcode 10.3"
275097aebd8SPhilippe Mathieu-Daudé      env:
276af17e7e7SLaurent Vivier        - BASE_CONFIG="--disable-docs --enable-tools"
277cd7507cbSPhilippe Mathieu-Daudé        - CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
278cd7507cbSPhilippe Mathieu-Daudé      os: osx
2790cb3e7baSAlex Bennée      osx_image: xcode10.3
280cd7507cbSPhilippe Mathieu-Daudé      compiler: clang
281289c8e59SAlex Bennée      addons:
282289c8e59SAlex Bennée        homebrew:
283289c8e59SAlex Bennée          packages:
284289c8e59SAlex Bennée            - ccache
285289c8e59SAlex Bennée            - glib
286289c8e59SAlex Bennée            - pixman
287289c8e59SAlex Bennée            - gnu-sed
288289c8e59SAlex Bennée            - python
289289c8e59SAlex Bennée          update: true
2906e3bd8a0SAlex Bennée      before_script:
291289c8e59SAlex Bennée        - brew link --overwrite python
2926e3bd8a0SAlex Bennée        - export PATH="/usr/local/opt/ccache/libexec:$PATH"
2936e3bd8a0SAlex Bennée        - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
2946e3bd8a0SAlex Bennée        - ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
295cd7507cbSPhilippe Mathieu-Daudé
296cd7507cbSPhilippe Mathieu-Daudé
297ae6d692dSAlex Bennée    # Python builds
298097aebd8SPhilippe Mathieu-Daudé    - name: "GCC Python 3.5 (x86_64-softmmu)"
299097aebd8SPhilippe Mathieu-Daudé      env:
300c21d7efcSDaniel P. Berrangé        - CONFIG="--target-list=x86_64-softmmu"
3017d183c54SPhilippe Mathieu-Daudé        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
30253fefde4SCleber Rosa      language: python
303321e6ea5SWainer dos Santos Moschetta      python: 3.5
304197be697SDaniel P. Berrangé
305197be697SDaniel P. Berrangé
306097aebd8SPhilippe Mathieu-Daudé    - name: "GCC Python 3.6 (x86_64-softmmu)"
307097aebd8SPhilippe Mathieu-Daudé      env:
308c21d7efcSDaniel P. Berrangé        - CONFIG="--target-list=x86_64-softmmu"
3097d183c54SPhilippe Mathieu-Daudé        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
31053fefde4SCleber Rosa      language: python
311321e6ea5SWainer dos Santos Moschetta      python: 3.6
312197be697SDaniel P. Berrangé
313197be697SDaniel P. Berrangé
314aa983ff6SCleber Rosa    # Acceptance (Functional) tests
315097aebd8SPhilippe Mathieu-Daudé    - name: "GCC check-acceptance"
316c2e09ad8SAlex Bennée      dist: bionic
317097aebd8SPhilippe Mathieu-Daudé      env:
318*6fd52d67SCleber Rosa        - 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"
3190b98c20aSEduardo Habkost        - TEST_CMD="make check-acceptance"
32067892c95SWainer dos Santos Moschetta      after_script:
32167892c95SWainer dos Santos Moschetta        - 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
322aa983ff6SCleber Rosa      addons:
323aa983ff6SCleber Rosa        apt:
324aa983ff6SCleber Rosa          packages:
32525311649SPhilippe Mathieu-Daudé            - python3-pil
326aa983ff6SCleber Rosa            - python3-pip
327c2e09ad8SAlex Bennée            - python3-numpy
328c2e09ad8SAlex Bennée            - python3-opencv
329c2e09ad8SAlex Bennée            - python3-venv
3308a837088SLiam Merwick            - rpm2cpio
33125311649SPhilippe Mathieu-Daudé            - tesseract-ocr
33225311649SPhilippe Mathieu-Daudé            - tesseract-ocr-eng
33325311649SPhilippe Mathieu-Daudé
33425311649SPhilippe Mathieu-Daudé
33532265288SAlex Bennée    # Using newer GCC with sanitizers
336097aebd8SPhilippe Mathieu-Daudé    - name: "GCC9 with sanitizers (softmmu)"
337097aebd8SPhilippe Mathieu-Daudé      addons:
33832265288SAlex Bennée        apt:
339ac07ffc6SAlex Bennée          update: true
34032265288SAlex Bennée          sources:
34132265288SAlex Bennée            # PPAs for newer toolchains
34232265288SAlex Bennée            - ubuntu-toolchain-r-test
34332265288SAlex Bennée          packages:
34432265288SAlex Bennée            # Extra toolchains
3453998c25eSAlex Bennée            - gcc-9
3463998c25eSAlex Bennée            - g++-9
34732265288SAlex Bennée            # Build dependencies
34832265288SAlex Bennée            - libaio-dev
34932265288SAlex Bennée            - libattr1-dev
35032265288SAlex Bennée            - libbrlapi-dev
35132265288SAlex Bennée            - libcap-ng-dev
35232265288SAlex Bennée            - libgnutls-dev
35332265288SAlex Bennée            - libgtk-3-dev
35432265288SAlex Bennée            - libiscsi-dev
35532265288SAlex Bennée            - liblttng-ust-dev
35632265288SAlex Bennée            - libnfs-dev
35732265288SAlex Bennée            - libncurses5-dev
35832265288SAlex Bennée            - libnss3-dev
35932265288SAlex Bennée            - libpixman-1-dev
36032265288SAlex Bennée            - libpng12-dev
36132265288SAlex Bennée            - librados-dev
362241e7955SThomas Huth            - libsdl2-dev
363241e7955SThomas Huth            - libsdl2-image-dev
36432265288SAlex Bennée            - libseccomp-dev
36532265288SAlex Bennée            - libspice-protocol-dev
36632265288SAlex Bennée            - libspice-server-dev
367b10d49d7SPino Toscano            - libssh-dev
36832265288SAlex Bennée            - liburcu-dev
36932265288SAlex Bennée            - libusb-1.0-0-dev
37095310576SAlex Bennée            - libvte-2.91-dev
37132265288SAlex Bennée            - sparse
37232265288SAlex Bennée            - uuid-dev
37332265288SAlex Bennée      language: generic
37432265288SAlex Bennée      compiler: none
37532265288SAlex Bennée      env:
3763998c25eSAlex Bennée        - COMPILER_NAME=gcc CXX=g++-9 CC=gcc-9
3773998c25eSAlex Bennée        - CONFIG="--cc=gcc-9 --cxx=g++-9 --disable-pie --disable-linux-user"
37832265288SAlex Bennée        - TEST_CMD=""
37932265288SAlex Bennée      before_script:
380bc4486fbSPaolo Bonzini        - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
381db5adeaaSPaolo Bonzini        - ${SRC_DIR}/configure ${CONFIG} --extra-cflags="-g3 -O0 -Wno-error=stringop-truncation -fsanitize=thread" --extra-ldflags="-fuse-ld=gold" || { cat config.log && exit 1; }
382197be697SDaniel P. Berrangé
383197be697SDaniel P. Berrangé
384dab3a7c0SAlex Bennée    # Run check-tcg against linux-user
385097aebd8SPhilippe Mathieu-Daudé    - name: "GCC check-tcg (user)"
386097aebd8SPhilippe Mathieu-Daudé      env:
3872efabbe1SAlex Bennée        - CONFIG="--disable-system --enable-debug-tcg"
38873217f3eSAlex Bennée        - TEST_BUILD_CMD="make build-tcg"
3894f46afd9SAlex Bennée        - TEST_CMD="make check-tcg"
39019633df8SAlex Bennée        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
3917d183c54SPhilippe Mathieu-Daudé
392dab3a7c0SAlex Bennée
3934fbddb5dSAlex Bennée    # Run check-tcg against linux-user (with plugins)
3944fbddb5dSAlex Bennée    # we skip sparc64-linux-user until it has been fixed somewhat
3957986f486SAlex Bennée    # we skip cris-linux-user as it doesn't use the common run loop
396097aebd8SPhilippe Mathieu-Daudé    - name: "GCC plugins check-tcg (user)"
397097aebd8SPhilippe Mathieu-Daudé      env:
3987986f486SAlex Bennée        - CONFIG="--disable-system --enable-plugins --enable-debug-tcg --target-list-exclude=sparc64-linux-user,cris-linux-user"
39973217f3eSAlex Bennée        - TEST_BUILD_CMD="make build-tcg"
4004f46afd9SAlex Bennée        - TEST_CMD="make check-tcg"
40119633df8SAlex Bennée        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
402e2576f9bSDaniel P. Berrangé
403dab3a7c0SAlex Bennée
404dab3a7c0SAlex Bennée    # Run check-tcg against softmmu targets
405097aebd8SPhilippe Mathieu-Daudé    - name: "GCC check-tcg (some-softmmu)"
406097aebd8SPhilippe Mathieu-Daudé      env:
4072efabbe1SAlex Bennée        - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
408c9331e9cSAlex Bennée        - TEST_BUILD_CMD="make build-tcg"
4094f46afd9SAlex Bennée        - TEST_CMD="make check-tcg"
41019633df8SAlex Bennée        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
41161ac3dccSPhilippe Mathieu-Daudé
41261ac3dccSPhilippe Mathieu-Daudé
4134fbddb5dSAlex Bennée    # Run check-tcg against softmmu targets (with plugins)
414097aebd8SPhilippe Mathieu-Daudé    - name: "GCC plugins check-tcg (some-softmmu)"
415097aebd8SPhilippe Mathieu-Daudé      env:
41619633df8SAlex Bennée        - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
417c9331e9cSAlex Bennée        - TEST_BUILD_CMD="make build-tcg"
4184f46afd9SAlex Bennée        - TEST_CMD="make check-tcg"
41919633df8SAlex Bennée        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
42061ac3dccSPhilippe Mathieu-Daudé
421097aebd8SPhilippe Mathieu-Daudé    - name: "[aarch64] GCC check-tcg"
422097aebd8SPhilippe Mathieu-Daudé      arch: arm64
4239c5941a9SThomas Huth      dist: xenial
4249c5941a9SThomas Huth      addons:
4259c5941a9SThomas Huth        apt_packages:
4269c5941a9SThomas Huth          - libaio-dev
4279c5941a9SThomas Huth          - libattr1-dev
4289c5941a9SThomas Huth          - libbrlapi-dev
4299c5941a9SThomas Huth          - libcap-ng-dev
4309c5941a9SThomas Huth          - libgcrypt20-dev
4319c5941a9SThomas Huth          - libgnutls28-dev
4329c5941a9SThomas Huth          - libgtk-3-dev
4339c5941a9SThomas Huth          - libiscsi-dev
4349c5941a9SThomas Huth          - liblttng-ust-dev
4359c5941a9SThomas Huth          - libncurses5-dev
4369c5941a9SThomas Huth          - libnfs-dev
4379c5941a9SThomas Huth          - libnss3-dev
4389c5941a9SThomas Huth          - libpixman-1-dev
4399c5941a9SThomas Huth          - libpng-dev
4409c5941a9SThomas Huth          - librados-dev
4419c5941a9SThomas Huth          - libsdl2-dev
4429c5941a9SThomas Huth          - libseccomp-dev
4439c5941a9SThomas Huth          - liburcu-dev
4449c5941a9SThomas Huth          - libusb-1.0-0-dev
4459c5941a9SThomas Huth          - libvdeplug-dev
4469c5941a9SThomas Huth          - libvte-2.91-dev
44758a1e5b6SWainer dos Santos Moschetta          # Tests dependencies
44858a1e5b6SWainer dos Santos Moschetta          - genisoimage
4499c5941a9SThomas Huth      env:
4509c5941a9SThomas Huth        - TEST_CMD="make check check-tcg V=1"
4519c5941a9SThomas Huth        - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS}"
4529c5941a9SThomas Huth
453097aebd8SPhilippe Mathieu-Daudé    - name: "[ppc64] GCC check-tcg"
454097aebd8SPhilippe Mathieu-Daudé      arch: ppc64le
4559c5941a9SThomas Huth      dist: xenial
4569c5941a9SThomas Huth      addons:
4579c5941a9SThomas Huth        apt_packages:
4589c5941a9SThomas Huth          - libaio-dev
4599c5941a9SThomas Huth          - libattr1-dev
4609c5941a9SThomas Huth          - libbrlapi-dev
4619c5941a9SThomas Huth          - libcap-ng-dev
4629c5941a9SThomas Huth          - libgcrypt20-dev
4639c5941a9SThomas Huth          - libgnutls28-dev
4649c5941a9SThomas Huth          - libgtk-3-dev
4659c5941a9SThomas Huth          - libiscsi-dev
4669c5941a9SThomas Huth          - liblttng-ust-dev
4679c5941a9SThomas Huth          - libncurses5-dev
4689c5941a9SThomas Huth          - libnfs-dev
4699c5941a9SThomas Huth          - libnss3-dev
4709c5941a9SThomas Huth          - libpixman-1-dev
4719c5941a9SThomas Huth          - libpng-dev
4729c5941a9SThomas Huth          - librados-dev
4739c5941a9SThomas Huth          - libsdl2-dev
4749c5941a9SThomas Huth          - libseccomp-dev
4759c5941a9SThomas Huth          - liburcu-dev
4769c5941a9SThomas Huth          - libusb-1.0-0-dev
4779c5941a9SThomas Huth          - libvdeplug-dev
4789c5941a9SThomas Huth          - libvte-2.91-dev
47958a1e5b6SWainer dos Santos Moschetta          # Tests dependencies
48058a1e5b6SWainer dos Santos Moschetta          - genisoimage
4819c5941a9SThomas Huth      env:
4829c5941a9SThomas Huth        - TEST_CMD="make check check-tcg V=1"
4839c5941a9SThomas Huth        - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},ppc64le-linux-user"
4849c5941a9SThomas Huth
485097aebd8SPhilippe Mathieu-Daudé    - name: "[s390x] GCC check-tcg"
486097aebd8SPhilippe Mathieu-Daudé      arch: s390x
4879c5941a9SThomas Huth      dist: bionic
4889c5941a9SThomas Huth      addons:
4899c5941a9SThomas Huth        apt_packages:
4909c5941a9SThomas Huth          - libaio-dev
4919c5941a9SThomas Huth          - libattr1-dev
4929c5941a9SThomas Huth          - libbrlapi-dev
4939c5941a9SThomas Huth          - libcap-ng-dev
4949c5941a9SThomas Huth          - libgcrypt20-dev
4959c5941a9SThomas Huth          - libgnutls28-dev
4969c5941a9SThomas Huth          - libgtk-3-dev
4979c5941a9SThomas Huth          - libiscsi-dev
4989c5941a9SThomas Huth          - liblttng-ust-dev
4999c5941a9SThomas Huth          - libncurses5-dev
5009c5941a9SThomas Huth          - libnfs-dev
5019c5941a9SThomas Huth          - libnss3-dev
5029c5941a9SThomas Huth          - libpixman-1-dev
5039c5941a9SThomas Huth          - libpng-dev
5049c5941a9SThomas Huth          - librados-dev
5059c5941a9SThomas Huth          - libsdl2-dev
5069c5941a9SThomas Huth          - libseccomp-dev
5079c5941a9SThomas Huth          - liburcu-dev
5089c5941a9SThomas Huth          - libusb-1.0-0-dev
5099c5941a9SThomas Huth          - libvdeplug-dev
5109c5941a9SThomas Huth          - libvte-2.91-dev
51158a1e5b6SWainer dos Santos Moschetta          # Tests dependencies
51258a1e5b6SWainer dos Santos Moschetta          - genisoimage
5139c5941a9SThomas Huth      env:
5149c5941a9SThomas Huth        - TEST_CMD="make check check-tcg V=1"
5159c5941a9SThomas Huth        - CONFIG="--disable-containers --target-list=${MAIN_SOFTMMU_TARGETS},s390x-linux-user"
51631c8cc4fSThomas Huth      script:
51731c8cc4fSThomas Huth        - ( cd ${SRC_DIR} ; git submodule update --init roms/SLOF )
51831c8cc4fSThomas Huth        - BUILD_RC=0 && make -j${JOBS} || BUILD_RC=$?
51931c8cc4fSThomas Huth        - |
52031c8cc4fSThomas Huth          if [ "$BUILD_RC" -eq 0 ] ; then
52131c8cc4fSThomas Huth              mv pc-bios/s390-ccw/*.img pc-bios/ ;
52231c8cc4fSThomas Huth              ${TEST_CMD} ;
52331c8cc4fSThomas Huth          else
52431c8cc4fSThomas Huth              $(exit $BUILD_RC);
52531c8cc4fSThomas Huth          fi
52661ac3dccSPhilippe Mathieu-Daudé
52761ac3dccSPhilippe Mathieu-Daudé    # Release builds
52861ac3dccSPhilippe Mathieu-Daudé    # The make-release script expect a QEMU version, so our tag must start with a 'v'.
52961ac3dccSPhilippe Mathieu-Daudé    # This is the case when release candidate tags are created.
530097aebd8SPhilippe Mathieu-Daudé    - name: "Release tarball"
531097aebd8SPhilippe Mathieu-Daudé      if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
53261ac3dccSPhilippe Mathieu-Daudé      env:
53361ac3dccSPhilippe Mathieu-Daudé        # We want to build from the release tarball
53461ac3dccSPhilippe Mathieu-Daudé        - BUILD_DIR="release/build/dir" SRC_DIR="../../.."
53561ac3dccSPhilippe Mathieu-Daudé        - BASE_CONFIG="--prefix=$PWD/dist"
53661ac3dccSPhilippe Mathieu-Daudé        - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user"
5370a7c0ae0SAlex Bennée        - TEST_CMD="make install -j${JOBS}"
53861ac3dccSPhilippe Mathieu-Daudé        - QEMU_VERSION="${TRAVIS_TAG:1}"
53961ac3dccSPhilippe Mathieu-Daudé        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
54061ac3dccSPhilippe Mathieu-Daudé      script:
54161ac3dccSPhilippe Mathieu-Daudé        - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2
54261ac3dccSPhilippe Mathieu-Daudé        - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2
54361ac3dccSPhilippe Mathieu-Daudé        - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION}
544bc4486fbSPaolo Bonzini        - mkdir -p release-build && cd release-build
545bc4486fbSPaolo Bonzini        - ../configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
54661ac3dccSPhilippe Mathieu-Daudé        - make install
547