]> git.proxmox.com Git - mirror_qemu.git/blame - .travis.yml
qcow2: Read outside array bounds in qcow2_pre_write_overlap_check()
[mirror_qemu.git] / .travis.yml
CommitLineData
044722d5
AB
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
692d162c 4sudo: false
044722d5 5dist: trusty
fe863ab9
AB
6language: c
7python:
8e73a3c5 8 - "2.6"
fe863ab9
AB
9compiler:
10 - gcc
4c33d42d 11cache: ccache
692d162c
AB
12addons:
13 apt:
14 packages:
32265288 15 # Build dependencies
692d162c
AB
16 - libaio-dev
17 - libattr1-dev
18 - libbrlapi-dev
19 - libcap-ng-dev
7524a39d 20 - libgcc-4.8-dev
692d162c
AB
21 - libgnutls-dev
22 - libgtk-3-dev
23 - libiscsi-dev
24 - liblttng-ust-dev
25 - libncurses5-dev
d83414e1 26 - libnfs-dev
692d162c
AB
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
0708e647 41 - gcovr
692d162c 42
cb4c2536
PK
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"
39d16d29
AB
46notifications:
47 irc:
48 channels:
cb4c2536 49 - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
39d16d29
AB
50 on_success: change
51 on_failure: always
fe863ab9
AB
52env:
53 global:
ebf2ff65
PMD
54 - SRC_DIR="."
55 - BUILD_DIR="."
01337fbd 56 - TEST_CMD="make check"
f4089dc8 57 - MAKEFLAGS="-j3"
fe863ab9 58 matrix:
ad20a090
AB
59 - CONFIG="--disable-system"
60 - CONFIG="--disable-user"
52dd1967 61 - CONFIG="--enable-debug --enable-debug-tcg"
0b438fa6 62 - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-uuid --disable-libusb --disable-user"
04200a16
AB
63 - CONFIG="--enable-modules --disable-linux-user"
64 - CONFIG="--with-coroutine=ucontext --disable-linux-user"
65 - CONFIG="--with-coroutine=sigaltstack --disable-linux-user"
cb021cfe
AB
66git:
67 # we want to do this ourselves
68 submodules: false
fe863ab9 69before_install:
1d002037
AB
70 - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update ; fi
71 - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install libffi gettext glib pixman ; fi
ebdfb610 72 - git submodule update --init --recursive capstone dtc ui/keycodemapdb
eebf2940 73before_script:
ebf2ff65
PMD
74 - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
75 - ${SRC_DIR}/configure ${CONFIG} || { cat config.log && exit 1; }
eebf2940 76script:
f4089dc8 77 - make ${MAKEFLAGS} && ${TEST_CMD}
fe863ab9 78matrix:
fe863ab9 79 include:
ebf2ff65
PMD
80 # Test out-of-tree builds
81 - env: CONFIG="--enable-debug --enable-debug-tcg"
82 BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
ae6d692d
AB
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"
d9a6b013 87 compiler: clang
6c933291 88 # gprof/gcov are GCC features
73d99c11 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"
0708e647
AB
90 after_success:
91 - ${SRC_DIR}/scripts/travis/coverage-summary.sh
fe863ab9 92 compiler: gcc
6c933291
AB
93 # We manually include builds which we disable "make check" for
94 - env: CONFIG="--enable-debug --enable-tcg-interpreter"
01337fbd 95 TEST_CMD=""
fe863ab9 96 compiler: gcc
f8309de9
AB
97 # We don't need to exercise every backend with every front-end
98 - env: CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
01337fbd 99 TEST_CMD=""
fe863ab9 100 compiler: gcc
f8309de9 101 - env: CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
01337fbd 102 TEST_CMD=""
86c3b20a 103 compiler: gcc
f8309de9 104 - env: CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
15552dbb
AB
105 TEST_CMD=""
106 compiler: gcc
97837314
PB
107 - env: CONFIG="--disable-tcg"
108 TEST_CMD=""
109 compiler: gcc
1d002037
AB
110 - env: CONFIG=""
111 os: osx
112 compiler: clang
ae6d692d
AB
113 # Python builds
114 - env: CONFIG="--target-list=x86_64-softmmu"
8e73a3c5
DB
115 python:
116 - "3.0"
ae6d692d 117 - env: CONFIG="--target-list=x86_64-softmmu"
8e73a3c5
DB
118 python:
119 - "3.6"
aa983ff6
CR
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
32265288
AB
128 # Using newer GCC with sanitizers
129 - addons:
130 apt:
ac07ffc6 131 update: true
32265288
AB
132 sources:
133 # PPAs for newer toolchains
134 - ubuntu-toolchain-r-test
135 packages:
136 # Extra toolchains
ac07ffc6
AB
137 - gcc-7
138 - g++-7
32265288
AB
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:
ac07ffc6
AB
167 - COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7
168 - CONFIG="--cc=gcc-7 --cxx=g++-7 --disable-pie --disable-linux-user"
32265288
AB
169 - TEST_CMD=""
170 before_script:
6a259f8d 171 - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || { cat config.log && exit 1; }
65b26da4
AB
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