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