2018-05-30 10:04:04 +02:00
|
|
|
# The current Travis default is a container based 14.04 Trust on EC2
|
|
|
|
# Additional builds with specific requirements for a full VM need to
|
|
|
|
# be added as additional matrix: entries later on
|
2016-01-14 20:21:16 +01:00
|
|
|
sudo: false
|
2018-05-30 10:04:04 +02:00
|
|
|
dist: trusty
|
2013-11-06 11:43:37 +01:00
|
|
|
language: c
|
|
|
|
python:
|
2018-01-16 14:42:16 +01:00
|
|
|
- "2.6"
|
2013-11-06 11:43:37 +01:00
|
|
|
compiler:
|
|
|
|
- gcc
|
2016-01-31 18:29:46 +01:00
|
|
|
cache: ccache
|
2016-01-14 20:21:16 +01:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
2016-09-30 23:31:03 +02:00
|
|
|
# Build dependencies
|
2016-01-14 20:21:16 +01:00
|
|
|
- libaio-dev
|
|
|
|
- libattr1-dev
|
|
|
|
- libbrlapi-dev
|
|
|
|
- libcap-ng-dev
|
2018-02-12 19:46:50 +01:00
|
|
|
- libgcc-4.8-dev
|
2016-01-14 20:21:16 +01:00
|
|
|
- libgnutls-dev
|
|
|
|
- libgtk-3-dev
|
|
|
|
- libiscsi-dev
|
|
|
|
- liblttng-ust-dev
|
|
|
|
- libncurses5-dev
|
2018-01-16 16:11:52 +01:00
|
|
|
- libnfs-dev
|
2016-01-14 20:21:16 +01:00
|
|
|
- libnss3-dev
|
|
|
|
- libpixman-1-dev
|
|
|
|
- libpng12-dev
|
|
|
|
- librados-dev
|
|
|
|
- libsdl1.2-dev
|
|
|
|
- libseccomp-dev
|
|
|
|
- libspice-protocol-dev
|
|
|
|
- libspice-server-dev
|
|
|
|
- libssh2-1-dev
|
|
|
|
- liburcu-dev
|
|
|
|
- libusb-1.0-0-dev
|
|
|
|
- libvte-2.90-dev
|
|
|
|
- sparse
|
|
|
|
- uuid-dev
|
2018-06-20 13:00:07 +02:00
|
|
|
- gcovr
|
2016-01-14 20:21:16 +01:00
|
|
|
|
2016-06-27 20:13:22 +02:00
|
|
|
# The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
|
|
|
|
# to prevent IRC notifications from forks. This was created using:
|
|
|
|
# $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
|
2014-03-12 15:13:53 +01:00
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels:
|
2016-06-27 20:13:22 +02:00
|
|
|
- secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
|
2014-03-12 15:13:53 +01:00
|
|
|
on_success: change
|
|
|
|
on_failure: always
|
2013-11-06 11:43:37 +01:00
|
|
|
env:
|
|
|
|
global:
|
2018-06-21 14:26:37 +02:00
|
|
|
- SRC_DIR="."
|
|
|
|
- BUILD_DIR="."
|
2016-01-28 11:21:15 +01:00
|
|
|
- TEST_CMD="make check"
|
2017-07-18 02:31:30 +02:00
|
|
|
- MAKEFLAGS="-j3"
|
2013-11-06 11:43:37 +01:00
|
|
|
matrix:
|
2018-03-13 15:20:55 +01:00
|
|
|
- CONFIG="--disable-system"
|
|
|
|
- CONFIG="--disable-user"
|
2018-03-13 15:18:06 +01:00
|
|
|
- CONFIG="--enable-debug --enable-debug-tcg"
|
2018-03-13 16:24:22 +01:00
|
|
|
- CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-uuid --disable-libusb --disable-user"
|
2018-02-07 16:19:25 +01:00
|
|
|
- CONFIG="--enable-modules --disable-linux-user"
|
|
|
|
- CONFIG="--with-coroutine=ucontext --disable-linux-user"
|
|
|
|
- CONFIG="--with-coroutine=sigaltstack --disable-linux-user"
|
2014-09-24 12:13:55 +02:00
|
|
|
git:
|
|
|
|
# we want to do this ourselves
|
|
|
|
submodules: false
|
2013-11-06 11:43:37 +01:00
|
|
|
before_install:
|
2016-03-21 20:54:57 +01:00
|
|
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update ; fi
|
|
|
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install libffi gettext glib pixman ; fi
|
2018-06-22 04:15:46 +02:00
|
|
|
- git submodule update --init --recursive capstone dtc ui/keycodemapdb
|
2014-09-24 12:13:54 +02:00
|
|
|
before_script:
|
2018-06-21 14:26:37 +02:00
|
|
|
- mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
|
|
|
|
- ${SRC_DIR}/configure ${CONFIG} || { cat config.log && exit 1; }
|
2014-09-24 12:13:54 +02:00
|
|
|
script:
|
2017-07-18 02:31:30 +02:00
|
|
|
- make ${MAKEFLAGS} && ${TEST_CMD}
|
2013-11-06 11:43:37 +01:00
|
|
|
matrix:
|
|
|
|
include:
|
2018-06-21 14:26:37 +02:00
|
|
|
# Test out-of-tree builds
|
|
|
|
- env: CONFIG="--enable-debug --enable-debug-tcg"
|
|
|
|
BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
|
2018-05-29 19:14:04 +02:00
|
|
|
# Test with Clang for compile portability (Travis uses clang-5.0)
|
|
|
|
- env: CONFIG="--disable-system"
|
|
|
|
compiler: clang
|
|
|
|
- env: CONFIG="--disable-user"
|
2016-10-27 15:23:45 +02:00
|
|
|
compiler: clang
|
2016-03-15 17:12:58 +01:00
|
|
|
# gprof/gcov are GCC features
|
2018-06-12 15:24:20 +02:00
|
|
|
- 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"
|
2018-06-20 13:00:07 +02:00
|
|
|
after_success:
|
|
|
|
- ${SRC_DIR}/scripts/travis/coverage-summary.sh
|
2013-11-06 11:43:37 +01:00
|
|
|
compiler: gcc
|
2016-03-15 17:12:58 +01:00
|
|
|
# We manually include builds which we disable "make check" for
|
|
|
|
- env: CONFIG="--enable-debug --enable-tcg-interpreter"
|
2016-01-28 11:21:15 +01:00
|
|
|
TEST_CMD=""
|
2013-11-06 11:43:37 +01:00
|
|
|
compiler: gcc
|
2018-06-14 12:28:20 +02:00
|
|
|
# We don't need to exercise every backend with every front-end
|
|
|
|
- env: CONFIG="--enable-trace-backends=log,simple,syslog --disable-system"
|
2016-01-28 11:21:15 +01:00
|
|
|
TEST_CMD=""
|
2013-11-06 11:43:37 +01:00
|
|
|
compiler: gcc
|
2018-06-14 12:28:20 +02:00
|
|
|
- env: CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
|
2016-01-28 11:21:15 +01:00
|
|
|
TEST_CMD=""
|
2014-03-12 15:13:51 +01:00
|
|
|
compiler: gcc
|
2018-06-14 12:28:20 +02:00
|
|
|
- env: CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
|
2016-01-28 11:29:17 +01:00
|
|
|
TEST_CMD=""
|
|
|
|
compiler: gcc
|
2017-07-14 11:30:16 +02:00
|
|
|
- env: CONFIG="--disable-tcg"
|
|
|
|
TEST_CMD=""
|
|
|
|
compiler: gcc
|
2018-10-08 12:56:13 +02:00
|
|
|
# MacOSX builds
|
|
|
|
- env: CONFIG="--target-list=aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
|
2016-03-21 20:54:57 +01:00
|
|
|
os: osx
|
2018-10-08 12:56:13 +02:00
|
|
|
osx_image: xcode9.4
|
|
|
|
compiler: clang
|
|
|
|
- env: CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
|
|
|
|
os: osx
|
|
|
|
osx_image: xcode10
|
2016-03-21 20:54:57 +01:00
|
|
|
compiler: clang
|
2018-05-29 19:14:04 +02:00
|
|
|
# Python builds
|
|
|
|
- env: CONFIG="--target-list=x86_64-softmmu"
|
2018-01-16 14:42:16 +01:00
|
|
|
python:
|
|
|
|
- "3.0"
|
2018-05-29 19:14:04 +02:00
|
|
|
- env: CONFIG="--target-list=x86_64-softmmu"
|
2018-01-16 14:42:16 +01:00
|
|
|
python:
|
|
|
|
- "3.6"
|
2018-10-18 17:31:34 +02:00
|
|
|
# Acceptance (Functional) tests
|
|
|
|
- env: CONFIG="--python=/usr/bin/python3 --target-list=x86_64-softmmu"
|
|
|
|
TEST_CMD="make AVOCADO_SHOW=app check-acceptance"
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- python3-pip
|
|
|
|
- python3.4-venv
|
2016-09-30 23:31:03 +02:00
|
|
|
# Using newer GCC with sanitizers
|
|
|
|
- addons:
|
|
|
|
apt:
|
2018-05-30 10:09:31 +02:00
|
|
|
update: true
|
2016-09-30 23:31:03 +02:00
|
|
|
sources:
|
|
|
|
# PPAs for newer toolchains
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
# Extra toolchains
|
2018-05-30 10:09:31 +02:00
|
|
|
- gcc-7
|
|
|
|
- g++-7
|
2016-09-30 23:31:03 +02:00
|
|
|
# Build dependencies
|
|
|
|
- libaio-dev
|
|
|
|
- libattr1-dev
|
|
|
|
- libbrlapi-dev
|
|
|
|
- libcap-ng-dev
|
|
|
|
- libgnutls-dev
|
|
|
|
- libgtk-3-dev
|
|
|
|
- libiscsi-dev
|
|
|
|
- liblttng-ust-dev
|
|
|
|
- libnfs-dev
|
|
|
|
- libncurses5-dev
|
|
|
|
- libnss3-dev
|
|
|
|
- libpixman-1-dev
|
|
|
|
- libpng12-dev
|
|
|
|
- librados-dev
|
|
|
|
- libsdl1.2-dev
|
|
|
|
- libseccomp-dev
|
|
|
|
- libspice-protocol-dev
|
|
|
|
- libspice-server-dev
|
|
|
|
- libssh2-1-dev
|
|
|
|
- liburcu-dev
|
|
|
|
- libusb-1.0-0-dev
|
|
|
|
- libvte-2.90-dev
|
|
|
|
- sparse
|
|
|
|
- uuid-dev
|
|
|
|
language: generic
|
|
|
|
compiler: none
|
|
|
|
env:
|
2018-05-30 10:09:31 +02:00
|
|
|
- COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7
|
|
|
|
- CONFIG="--cc=gcc-7 --cxx=g++-7 --disable-pie --disable-linux-user"
|
2016-09-30 23:31:03 +02:00
|
|
|
- TEST_CMD=""
|
|
|
|
before_script:
|
2018-06-12 10:28:23 +02:00
|
|
|
- ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || { cat config.log && exit 1; }
|
2018-04-18 17:55:37 +02:00
|
|
|
- env:
|
|
|
|
- CONFIG="--disable-system --disable-docs"
|
|
|
|
- TEST_CMD="make check-tcg"
|
|
|
|
script:
|
|
|
|
- make ${MAKEFLAGS} && ${TEST_CMD} ${MAKEFLAGS}
|
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
|
|
|
compiler: gcc
|