travis: run tests in verbose mode
[qemu/ar7.git] / .travis.yml
blob39dbda7a0b801c8e0528ee5309a4b51badeefefa
2 dist: trusty
3 language: c
4 python:
5   - "2.6"
6 compiler:
7   - gcc
8 cache: ccache
11 addons:
12   apt:
13     packages:
14       # Build dependencies
15       - libaio-dev
16       - libattr1-dev
17       - libbrlapi-dev
18       - libcap-ng-dev
19       - libgcc-4.8-dev
20       - libgnutls-dev
21       - libgtk-3-dev
22       - libiscsi-dev
23       - liblttng-ust-dev
24       - libncurses5-dev
25       - libnfs-dev
26       - libnss3-dev
27       - libpixman-1-dev
28       - libpng12-dev
29       - librados-dev
30       - libsdl1.2-dev
31       - libseccomp-dev
32       - libspice-protocol-dev
33       - libspice-server-dev
34       - libssh2-1-dev
35       - liburcu-dev
36       - libusb-1.0-0-dev
37       - libvte-2.90-dev
38       - sparse
39       - uuid-dev
40       - gcovr
41   homebrew:
42     packages:
43       - libffi
44       - gettext
45       - glib
46       - pixman
49 # The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
50 # to prevent IRC notifications from forks. This was created using:
51 # $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
52 notifications:
53   irc:
54     channels:
55       - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
56     on_success: change
57     on_failure: always
60 env:
61   global:
62     - SRC_DIR="."
63     - BUILD_DIR="."
64     - TEST_CMD="make check -j3 V=1"
67 git:
68   # we want to do this ourselves
69   submodules: false
72 before_script:
73   - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
74   - ${SRC_DIR}/configure ${CONFIG} || { cat config.log && exit 1; }
75 script:
76   - make -j3 && ${TEST_CMD}
79 matrix:
80   include:
81     - env:
82         - CONFIG="--disable-system"
85     - env:
86         - CONFIG="--disable-user"
89     - env:
90         - CONFIG="--enable-debug --enable-debug-tcg"
93     - env:
94         - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-uuid --disable-libusb --disable-user"
97     - env:
98         - CONFIG="--enable-modules --disable-linux-user"
101     - env:
102         - CONFIG="--with-coroutine=ucontext --disable-linux-user"
105     - env:
106         - CONFIG="--with-coroutine=sigaltstack --disable-linux-user"
109     # Test out-of-tree builds
110     - env:
111         - CONFIG="--enable-debug --enable-debug-tcg"
112         - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
115     # Test with Clang for compile portability (Travis uses clang-5.0)
116     - env:
117         - CONFIG="--disable-system"
118       compiler: clang
121     - env:
122         - CONFIG="--disable-user"
123       compiler: clang
126     # gprof/gcov are GCC features
127     - env:
128         - CONFIG="--enable-gprof --enable-gcov --disable-pie --target-list=aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
129       after_success:
130         - ${SRC_DIR}/scripts/travis/coverage-summary.sh
131       compiler: gcc
134     # We manually include builds which we disable "make check" for
135     - env:
136         - CONFIG="--enable-debug --enable-tcg-interpreter"
137         - TEST_CMD=""
138       compiler: gcc
141     # We don't need to exercise every backend with every front-end
142     - env:
143         - CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
144         - TEST_CMD=""
145       compiler: gcc
148     - env:
149         - CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
150         - TEST_CMD=""
151       compiler: gcc
154     - env:
155         - CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
156         - TEST_CMD=""
157       compiler: gcc
160     - env:
161         - CONFIG="--disable-tcg"
162         - TEST_CMD=""
163       compiler: gcc
166     # MacOSX builds
167     - env:
168         - CONFIG="--target-list=aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
169       os: osx
170       osx_image: xcode9.4
171       compiler: clang
174     - env:
175         - CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
176       os: osx
177       osx_image: xcode10
178       compiler: clang
181     # Python builds
182     - env:
183         - CONFIG="--target-list=x86_64-softmmu"
184       python:
185         - "3.0"
188     - env:
189         - CONFIG="--target-list=x86_64-softmmu"
190       python:
191         - "3.6"
194     # Acceptance (Functional) tests
195     - env:
196         - CONFIG="--python=/usr/bin/python3 --target-list=x86_64-softmmu"
197         - TEST_CMD="make AVOCADO_SHOW=app check-acceptance"
198       addons:
199         apt:
200           packages:
201             - python3-pip
202             - python3.4-venv
205     # Using newer GCC with sanitizers
206     - addons:
207         apt:
208           update: true
209           sources:
210             # PPAs for newer toolchains
211             - ubuntu-toolchain-r-test
212           packages:
213             # Extra toolchains
214             - gcc-7
215             - g++-7
216             # Build dependencies
217             - libaio-dev
218             - libattr1-dev
219             - libbrlapi-dev
220             - libcap-ng-dev
221             - libgnutls-dev
222             - libgtk-3-dev
223             - libiscsi-dev
224             - liblttng-ust-dev
225             - libnfs-dev
226             - libncurses5-dev
227             - libnss3-dev
228             - libpixman-1-dev
229             - libpng12-dev
230             - librados-dev
231             - libsdl1.2-dev
232             - libseccomp-dev
233             - libspice-protocol-dev
234             - libspice-server-dev
235             - libssh2-1-dev
236             - liburcu-dev
237             - libusb-1.0-0-dev
238             - libvte-2.90-dev
239             - sparse
240             - uuid-dev
241       language: generic
242       compiler: none
243       env:
244         - COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7
245         - CONFIG="--cc=gcc-7 --cxx=g++-7 --disable-pie --disable-linux-user"
246         - TEST_CMD=""
247       before_script:
248         - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || { cat config.log && exit 1; }
251     - env:
252         - CONFIG="--disable-system --disable-docs"
253         - TEST_CMD="make -j3 check-tcg V=1"
254       dist: trusty
255       compiler: gcc