xref: /qemu/.travis.yml (revision 609f45ea)
1# The current Travis default is a container based 14.04 Trust on EC2
2# Additional builds with specific requirements for a full VM need to
3# be added as additional matrix: entries later on
4sudo: false
5dist: trusty
6language: c
7python:
8  - "2.6"
9compiler:
10  - gcc
11cache: ccache
12addons:
13  apt:
14    packages:
15      # Build dependencies
16      - libaio-dev
17      - libattr1-dev
18      - libbrlapi-dev
19      - libcap-ng-dev
20      - libgcc-4.8-dev
21      - libgnutls-dev
22      - libgtk-3-dev
23      - libiscsi-dev
24      - liblttng-ust-dev
25      - libncurses5-dev
26      - libnfs-dev
27      - libnss3-dev
28      - libpixman-1-dev
29      - libpng12-dev
30      - librados-dev
31      - libsdl1.2-dev
32      - libseccomp-dev
33      - libspice-protocol-dev
34      - libspice-server-dev
35      - libssh2-1-dev
36      - liburcu-dev
37      - libusb-1.0-0-dev
38      - libvte-2.90-dev
39      - sparse
40      - uuid-dev
41
42# The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
43# to prevent IRC notifications from forks. This was created using:
44# $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
45notifications:
46  irc:
47    channels:
48      - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
49    on_success: change
50    on_failure: always
51env:
52  global:
53    - TEST_CMD="make check"
54    - MAKEFLAGS="-j3"
55  matrix:
56    - CONFIG="--disable-system"
57    - CONFIG="--disable-user"
58    - CONFIG="--enable-debug --enable-debug-tcg"
59    - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-uuid --disable-libusb --disable-user"
60    - CONFIG="--enable-modules --disable-linux-user"
61    - CONFIG="--with-coroutine=ucontext --disable-linux-user"
62    - CONFIG="--with-coroutine=sigaltstack --disable-linux-user"
63git:
64  # we want to do this ourselves
65  submodules: false
66before_install:
67  - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update ; fi
68  - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install libffi gettext glib pixman ; fi
69  - wget -O - http://people.linaro.org/~alex.bennee/qemu-submodule-git-seed.tar.xz | tar -xvJ
70  - git submodule update --init --recursive
71before_script:
72  - ./configure ${CONFIG}
73script:
74  - make ${MAKEFLAGS} && ${TEST_CMD}
75matrix:
76  include:
77    # Test with Clang for compile portability (Travis uses clang-5.0)
78    - env: CONFIG="--disable-system"
79      compiler: clang
80    - env: CONFIG="--disable-user"
81      compiler: clang
82    # gprof/gcov are GCC features
83    - env: CONFIG="--enable-gprof --enable-gcov --disable-pie --disable-linux-user"
84      compiler: gcc
85    # We manually include builds which we disable "make check" for
86    - env: CONFIG="--enable-debug --enable-tcg-interpreter"
87           TEST_CMD=""
88      compiler: gcc
89    - env: CONFIG="--enable-trace-backends=simple"
90           TEST_CMD=""
91      compiler: gcc
92    - env: CONFIG="--enable-trace-backends=ftrace"
93           TEST_CMD=""
94      compiler: gcc
95    - env: CONFIG="--enable-trace-backends=ust"
96           TEST_CMD=""
97      compiler: gcc
98    - env: CONFIG="--disable-tcg"
99           TEST_CMD=""
100      compiler: gcc
101    - env: CONFIG=""
102      os: osx
103      compiler: clang
104    # Python builds
105    - env: CONFIG="--target-list=x86_64-softmmu"
106      python:
107        - "3.0"
108    - env: CONFIG="--target-list=x86_64-softmmu"
109      python:
110        - "3.6"
111    # Using newer GCC with sanitizers
112    - addons:
113        apt:
114          update: true
115          sources:
116            # PPAs for newer toolchains
117            - ubuntu-toolchain-r-test
118          packages:
119            # Extra toolchains
120            - gcc-7
121            - g++-7
122            # Build dependencies
123            - libaio-dev
124            - libattr1-dev
125            - libbrlapi-dev
126            - libcap-ng-dev
127            - libgnutls-dev
128            - libgtk-3-dev
129            - libiscsi-dev
130            - liblttng-ust-dev
131            - libnfs-dev
132            - libncurses5-dev
133            - libnss3-dev
134            - libpixman-1-dev
135            - libpng12-dev
136            - librados-dev
137            - libsdl1.2-dev
138            - libseccomp-dev
139            - libspice-protocol-dev
140            - libspice-server-dev
141            - libssh2-1-dev
142            - liburcu-dev
143            - libusb-1.0-0-dev
144            - libvte-2.90-dev
145            - sparse
146            - uuid-dev
147      language: generic
148      compiler: none
149      env:
150        - COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7
151        - CONFIG="--cc=gcc-7 --cxx=g++-7 --disable-pie --disable-linux-user"
152        - TEST_CMD=""
153      before_script:
154        - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || cat config.log
155