]> git.proxmox.com Git - mirror_qemu.git/blob - .travis.yml
qcow2: Read outside array bounds in qcow2_pre_write_overlap_check()
[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 sudo: false
5 dist: trusty
6 language: c
7 python:
8 - "2.6"
9 compiler:
10 - gcc
11 cache: ccache
12 addons:
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 - gcovr
42
43 # The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
44 # to prevent IRC notifications from forks. This was created using:
45 # $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
46 notifications:
47 irc:
48 channels:
49 - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
50 on_success: change
51 on_failure: always
52 env:
53 global:
54 - SRC_DIR="."
55 - BUILD_DIR="."
56 - TEST_CMD="make check"
57 - MAKEFLAGS="-j3"
58 matrix:
59 - CONFIG="--disable-system"
60 - CONFIG="--disable-user"
61 - CONFIG="--enable-debug --enable-debug-tcg"
62 - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-uuid --disable-libusb --disable-user"
63 - CONFIG="--enable-modules --disable-linux-user"
64 - CONFIG="--with-coroutine=ucontext --disable-linux-user"
65 - CONFIG="--with-coroutine=sigaltstack --disable-linux-user"
66 git:
67 # we want to do this ourselves
68 submodules: false
69 before_install:
70 - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update ; fi
71 - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install libffi gettext glib pixman ; fi
72 - git submodule update --init --recursive capstone dtc ui/keycodemapdb
73 before_script:
74 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
75 - ${SRC_DIR}/configure ${CONFIG} || { cat config.log && exit 1; }
76 script:
77 - make ${MAKEFLAGS} && ${TEST_CMD}
78 matrix:
79 include:
80 # Test out-of-tree builds
81 - env: CONFIG="--enable-debug --enable-debug-tcg"
82 BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
83 # Test with Clang for compile portability (Travis uses clang-5.0)
84 - env: CONFIG="--disable-system"
85 compiler: clang
86 - env: CONFIG="--disable-user"
87 compiler: clang
88 # gprof/gcov are GCC features
89 - 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"
90 after_success:
91 - ${SRC_DIR}/scripts/travis/coverage-summary.sh
92 compiler: gcc
93 # We manually include builds which we disable "make check" for
94 - env: CONFIG="--enable-debug --enable-tcg-interpreter"
95 TEST_CMD=""
96 compiler: gcc
97 # We don't need to exercise every backend with every front-end
98 - env: CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
99 TEST_CMD=""
100 compiler: gcc
101 - env: CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
102 TEST_CMD=""
103 compiler: gcc
104 - env: CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
105 TEST_CMD=""
106 compiler: gcc
107 - env: CONFIG="--disable-tcg"
108 TEST_CMD=""
109 compiler: gcc
110 - env: CONFIG=""
111 os: osx
112 compiler: clang
113 # Python builds
114 - env: CONFIG="--target-list=x86_64-softmmu"
115 python:
116 - "3.0"
117 - env: CONFIG="--target-list=x86_64-softmmu"
118 python:
119 - "3.6"
120 # Acceptance (Functional) tests
121 - env: CONFIG="--python=/usr/bin/python3 --target-list=x86_64-softmmu"
122 TEST_CMD="make AVOCADO_SHOW=app check-acceptance"
123 addons:
124 apt:
125 packages:
126 - python3-pip
127 - python3.4-venv
128 # Using newer GCC with sanitizers
129 - addons:
130 apt:
131 update: true
132 sources:
133 # PPAs for newer toolchains
134 - ubuntu-toolchain-r-test
135 packages:
136 # Extra toolchains
137 - gcc-7
138 - g++-7
139 # Build dependencies
140 - libaio-dev
141 - libattr1-dev
142 - libbrlapi-dev
143 - libcap-ng-dev
144 - libgnutls-dev
145 - libgtk-3-dev
146 - libiscsi-dev
147 - liblttng-ust-dev
148 - libnfs-dev
149 - libncurses5-dev
150 - libnss3-dev
151 - libpixman-1-dev
152 - libpng12-dev
153 - librados-dev
154 - libsdl1.2-dev
155 - libseccomp-dev
156 - libspice-protocol-dev
157 - libspice-server-dev
158 - libssh2-1-dev
159 - liburcu-dev
160 - libusb-1.0-0-dev
161 - libvte-2.90-dev
162 - sparse
163 - uuid-dev
164 language: generic
165 compiler: none
166 env:
167 - COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7
168 - CONFIG="--cc=gcc-7 --cxx=g++-7 --disable-pie --disable-linux-user"
169 - TEST_CMD=""
170 before_script:
171 - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || { cat config.log && exit 1; }
172 - env:
173 - CONFIG="--disable-system --disable-docs"
174 - TEST_CMD="make check-tcg"
175 script:
176 - make ${MAKEFLAGS} && ${TEST_CMD} ${MAKEFLAGS}
177 sudo: required
178 dist: trusty
179 compiler: gcc