]> git.proxmox.com Git - mirror_qemu.git/blob - .travis.yml
travis: add whitespace between each major section & matrix entry
[mirror_qemu.git] / .travis.yml
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
4
5 sudo: false
6 dist: trusty
7 language: c
8 python:
9 - "2.6"
10 compiler:
11 - gcc
12 cache: ccache
13
14
15 addons:
16 apt:
17 packages:
18 # Build dependencies
19 - libaio-dev
20 - libattr1-dev
21 - libbrlapi-dev
22 - libcap-ng-dev
23 - libgcc-4.8-dev
24 - libgnutls-dev
25 - libgtk-3-dev
26 - libiscsi-dev
27 - liblttng-ust-dev
28 - libncurses5-dev
29 - libnfs-dev
30 - libnss3-dev
31 - libpixman-1-dev
32 - libpng12-dev
33 - librados-dev
34 - libsdl1.2-dev
35 - libseccomp-dev
36 - libspice-protocol-dev
37 - libspice-server-dev
38 - libssh2-1-dev
39 - liburcu-dev
40 - libusb-1.0-0-dev
41 - libvte-2.90-dev
42 - sparse
43 - uuid-dev
44 - gcovr
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"
63 - MAKEFLAGS="-j3"
64 matrix:
65 - CONFIG="--disable-system"
66 - CONFIG="--disable-user"
67 - CONFIG="--enable-debug --enable-debug-tcg"
68 - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-uuid --disable-libusb --disable-user"
69 - CONFIG="--enable-modules --disable-linux-user"
70 - CONFIG="--with-coroutine=ucontext --disable-linux-user"
71 - CONFIG="--with-coroutine=sigaltstack --disable-linux-user"
72
73
74 git:
75 # we want to do this ourselves
76 submodules: false
77
78
79 before_install:
80 - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update ; fi
81 - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install libffi gettext glib pixman ; fi
82 - git submodule update --init --recursive capstone dtc ui/keycodemapdb
83 before_script:
84 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
85 - ${SRC_DIR}/configure ${CONFIG} || { cat config.log && exit 1; }
86 script:
87 - make ${MAKEFLAGS} && ${TEST_CMD}
88
89
90 matrix:
91 include:
92 # Test out-of-tree builds
93 - env: CONFIG="--enable-debug --enable-debug-tcg"
94 BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
95
96
97 # Test with Clang for compile portability (Travis uses clang-5.0)
98 - env: CONFIG="--disable-system"
99 compiler: clang
100
101
102 - env: CONFIG="--disable-user"
103 compiler: clang
104
105
106 # gprof/gcov are GCC features
107 - env: 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"
108 after_success:
109 - ${SRC_DIR}/scripts/travis/coverage-summary.sh
110 compiler: gcc
111
112
113 # We manually include builds which we disable "make check" for
114 - env: CONFIG="--enable-debug --enable-tcg-interpreter"
115 TEST_CMD=""
116 compiler: gcc
117
118
119 # We don't need to exercise every backend with every front-end
120 - env: CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
121 TEST_CMD=""
122 compiler: gcc
123
124
125 - env: CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
126 TEST_CMD=""
127 compiler: gcc
128
129
130 - env: CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
131 TEST_CMD=""
132 compiler: gcc
133
134
135 - env: CONFIG="--disable-tcg"
136 TEST_CMD=""
137 compiler: gcc
138
139
140 # MacOSX builds
141 - env: CONFIG="--target-list=aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
142 os: osx
143 osx_image: xcode9.4
144 compiler: clang
145
146
147 - env: CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
148 os: osx
149 osx_image: xcode10
150 compiler: clang
151
152
153 # Python builds
154 - env: CONFIG="--target-list=x86_64-softmmu"
155 python:
156 - "3.0"
157
158
159 - env: CONFIG="--target-list=x86_64-softmmu"
160 python:
161 - "3.6"
162
163
164 # Acceptance (Functional) tests
165 - env: CONFIG="--python=/usr/bin/python3 --target-list=x86_64-softmmu"
166 TEST_CMD="make AVOCADO_SHOW=app check-acceptance"
167 addons:
168 apt:
169 packages:
170 - python3-pip
171 - python3.4-venv
172
173
174 # Using newer GCC with sanitizers
175 - addons:
176 apt:
177 update: true
178 sources:
179 # PPAs for newer toolchains
180 - ubuntu-toolchain-r-test
181 packages:
182 # Extra toolchains
183 - gcc-7
184 - g++-7
185 # Build dependencies
186 - libaio-dev
187 - libattr1-dev
188 - libbrlapi-dev
189 - libcap-ng-dev
190 - libgnutls-dev
191 - libgtk-3-dev
192 - libiscsi-dev
193 - liblttng-ust-dev
194 - libnfs-dev
195 - libncurses5-dev
196 - libnss3-dev
197 - libpixman-1-dev
198 - libpng12-dev
199 - librados-dev
200 - libsdl1.2-dev
201 - libseccomp-dev
202 - libspice-protocol-dev
203 - libspice-server-dev
204 - libssh2-1-dev
205 - liburcu-dev
206 - libusb-1.0-0-dev
207 - libvte-2.90-dev
208 - sparse
209 - uuid-dev
210 language: generic
211 compiler: none
212 env:
213 - COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7
214 - CONFIG="--cc=gcc-7 --cxx=g++-7 --disable-pie --disable-linux-user"
215 - TEST_CMD=""
216 before_script:
217 - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || { cat config.log && exit 1; }
218
219
220 - env:
221 - CONFIG="--disable-system --disable-docs"
222 - TEST_CMD="make check-tcg"
223 script:
224 - make ${MAKEFLAGS} && ${TEST_CMD} ${MAKEFLAGS}
225 sudo: required
226 dist: trusty
227 compiler: gcc