]> git.proxmox.com Git - mirror_qemu.git/blob - .travis.yml
.travis.yml: stop requesting libffi & gettext from homebrew
[mirror_qemu.git] / .travis.yml
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
5 language: c
6 compiler:
7 - gcc
8 cache: ccache
9
10
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.91-dev
38 - sparse
39 - uuid-dev
40 - gcovr
41 homebrew:
42 packages:
43 - glib
44 - pixman
45
46
47 # The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
48 # to prevent IRC notifications from forks. This was created using:
49 # $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
50 notifications:
51 irc:
52 channels:
53 - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
54 on_success: change
55 on_failure: always
56
57
58 env:
59 global:
60 - SRC_DIR="."
61 - BUILD_DIR="."
62 - TEST_CMD="make check -j3 V=1"
63
64
65 git:
66 # we want to do this ourselves
67 submodules: false
68
69
70 before_script:
71 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
72 - ${SRC_DIR}/configure ${CONFIG} || { cat config.log && exit 1; }
73 script:
74 - make -j3 && ${TEST_CMD}
75
76
77 matrix:
78 include:
79 - env:
80 - CONFIG="--disable-system"
81
82
83 - env:
84 - CONFIG="--disable-user"
85
86
87 - env:
88 - CONFIG="--enable-debug --enable-debug-tcg"
89
90
91 - env:
92 - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-uuid --disable-libusb --disable-user"
93
94
95 - env:
96 - CONFIG="--enable-modules --disable-linux-user"
97
98
99 - env:
100 - CONFIG="--with-coroutine=ucontext --disable-linux-user"
101
102
103 - env:
104 - CONFIG="--with-coroutine=sigaltstack --disable-linux-user"
105
106
107 # Test out-of-tree builds
108 - env:
109 - CONFIG="--enable-debug --enable-debug-tcg"
110 - BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
111
112
113 # Test with Clang for compile portability (Travis uses clang-5.0)
114 - env:
115 - CONFIG="--disable-system"
116 compiler: clang
117
118
119 - env:
120 - CONFIG="--disable-user"
121 compiler: clang
122
123
124 # gprof/gcov are GCC features
125 - env:
126 - 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"
127 after_success:
128 - ${SRC_DIR}/scripts/travis/coverage-summary.sh
129
130
131 # We manually include builds which we disable "make check" for
132 - env:
133 - CONFIG="--enable-debug --enable-tcg-interpreter"
134 - TEST_CMD=""
135
136
137 # We don't need to exercise every backend with every front-end
138 - env:
139 - CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
140 - TEST_CMD=""
141
142
143 - env:
144 - CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
145 - TEST_CMD=""
146
147
148 - env:
149 - CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
150 - TEST_CMD=""
151
152
153 - env:
154 - CONFIG="--disable-tcg"
155 - TEST_CMD=""
156
157
158 # MacOSX builds
159 - env:
160 - CONFIG="--target-list=aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
161 os: osx
162 osx_image: xcode9.4
163 compiler: clang
164
165
166 - env:
167 - CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
168 os: osx
169 osx_image: xcode10
170 compiler: clang
171
172
173 # Python builds
174 - env:
175 - CONFIG="--target-list=x86_64-softmmu"
176 language: python
177 python:
178 - "3.4"
179
180
181 - env:
182 - CONFIG="--target-list=x86_64-softmmu"
183 language: python
184 python:
185 - "3.6"
186
187
188 # Acceptance (Functional) tests
189 - env:
190 - CONFIG="--python=/usr/bin/python3 --target-list=x86_64-softmmu"
191 - TEST_CMD="make AVOCADO_SHOW=app check-acceptance"
192 addons:
193 apt:
194 packages:
195 - python3-pip
196 - python3.5-venv
197 # Using newer GCC with sanitizers
198 - addons:
199 apt:
200 update: true
201 sources:
202 # PPAs for newer toolchains
203 - ubuntu-toolchain-r-test
204 packages:
205 # Extra toolchains
206 - gcc-7
207 - g++-7
208 # Build dependencies
209 - libaio-dev
210 - libattr1-dev
211 - libbrlapi-dev
212 - libcap-ng-dev
213 - libgnutls-dev
214 - libgtk-3-dev
215 - libiscsi-dev
216 - liblttng-ust-dev
217 - libnfs-dev
218 - libncurses5-dev
219 - libnss3-dev
220 - libpixman-1-dev
221 - libpng12-dev
222 - librados-dev
223 - libsdl1.2-dev
224 - libseccomp-dev
225 - libspice-protocol-dev
226 - libspice-server-dev
227 - libssh2-1-dev
228 - liburcu-dev
229 - libusb-1.0-0-dev
230 - libvte-2.91-dev
231 - sparse
232 - uuid-dev
233 language: generic
234 compiler: none
235 env:
236 - COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7
237 - CONFIG="--cc=gcc-7 --cxx=g++-7 --disable-pie --disable-linux-user"
238 - TEST_CMD=""
239 before_script:
240 - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || { cat config.log && exit 1; }
241
242
243 - env:
244 - CONFIG="--disable-system --disable-docs"
245 - TEST_CMD="make -j3 check-tcg V=1"