2018-05-30 16:04:04 +08: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
|
2019-01-10 00:31:06 +08:00
|
|
|
|
2016-01-15 03:21:16 +08:00
|
|
|
sudo: false
|
2018-05-30 16:04:04 +08:00
|
|
|
dist: trusty
|
2013-11-06 18:43:37 +08:00
|
|
|
language: c
|
|
|
|
python:
|
2018-01-16 21:42:16 +08:00
|
|
|
- "2.6"
|
2013-11-06 18:43:37 +08:00
|
|
|
compiler:
|
|
|
|
- gcc
|
2016-02-01 01:29:46 +08:00
|
|
|
cache: ccache
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2016-01-15 03:21:16 +08:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
2016-10-01 05:31:03 +08:00
|
|
|
# Build dependencies
|
2016-01-15 03:21:16 +08:00
|
|
|
- libaio-dev
|
|
|
|
- libattr1-dev
|
|
|
|
- libbrlapi-dev
|
|
|
|
- libcap-ng-dev
|
2018-02-13 02:46:50 +08:00
|
|
|
- libgcc-4.8-dev
|
2016-01-15 03:21:16 +08:00
|
|
|
- libgnutls-dev
|
|
|
|
- libgtk-3-dev
|
|
|
|
- libiscsi-dev
|
|
|
|
- liblttng-ust-dev
|
|
|
|
- libncurses5-dev
|
2018-01-16 23:11:52 +08:00
|
|
|
- libnfs-dev
|
2016-01-15 03:21:16 +08: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 19:00:07 +08:00
|
|
|
- gcovr
|
2016-01-15 03:21:16 +08:00
|
|
|
|
2019-01-10 00:31:06 +08:00
|
|
|
|
2016-06-28 02:13:22 +08: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 22:13:53 +08:00
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels:
|
2016-06-28 02:13:22 +08:00
|
|
|
- secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM="
|
2014-03-12 22:13:53 +08:00
|
|
|
on_success: change
|
|
|
|
on_failure: always
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2013-11-06 18:43:37 +08:00
|
|
|
env:
|
|
|
|
global:
|
2018-06-21 20:26:37 +08:00
|
|
|
- SRC_DIR="."
|
|
|
|
- BUILD_DIR="."
|
2016-01-28 18:21:15 +08:00
|
|
|
- TEST_CMD="make check"
|
2017-07-18 08:31:30 +08:00
|
|
|
- MAKEFLAGS="-j3"
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2014-09-24 18:13:55 +08:00
|
|
|
git:
|
|
|
|
# we want to do this ourselves
|
|
|
|
submodules: false
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2013-11-06 18:43:37 +08:00
|
|
|
before_install:
|
2016-03-22 03:54:57 +08: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 10:15:46 +08:00
|
|
|
- git submodule update --init --recursive capstone dtc ui/keycodemapdb
|
2014-09-24 18:13:54 +08:00
|
|
|
before_script:
|
2018-06-21 20:26:37 +08:00
|
|
|
- mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
|
|
|
|
- ${SRC_DIR}/configure ${CONFIG} || { cat config.log && exit 1; }
|
2014-09-24 18:13:54 +08:00
|
|
|
script:
|
2017-07-18 08:31:30 +08:00
|
|
|
- make ${MAKEFLAGS} && ${TEST_CMD}
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2013-11-06 18:43:37 +08:00
|
|
|
matrix:
|
|
|
|
include:
|
2019-01-10 00:31:07 +08:00
|
|
|
- env: CONFIG="--disable-system"
|
|
|
|
|
|
|
|
|
|
|
|
- env: CONFIG="--disable-user"
|
|
|
|
|
|
|
|
|
|
|
|
- env: CONFIG="--enable-debug --enable-debug-tcg"
|
|
|
|
|
|
|
|
|
|
|
|
- env: CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-uuid --disable-libusb --disable-user"
|
|
|
|
|
|
|
|
|
|
|
|
- env: CONFIG="--enable-modules --disable-linux-user"
|
|
|
|
|
|
|
|
|
|
|
|
- env: CONFIG="--with-coroutine=ucontext --disable-linux-user"
|
|
|
|
|
|
|
|
|
|
|
|
- env: CONFIG="--with-coroutine=sigaltstack --disable-linux-user"
|
|
|
|
|
|
|
|
|
2018-06-21 20:26:37 +08:00
|
|
|
# Test out-of-tree builds
|
|
|
|
- env: CONFIG="--enable-debug --enable-debug-tcg"
|
|
|
|
BUILD_DIR="out-of-tree/build/dir" SRC_DIR="../../.."
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2018-05-30 01:14:04 +08:00
|
|
|
# Test with Clang for compile portability (Travis uses clang-5.0)
|
|
|
|
- env: CONFIG="--disable-system"
|
|
|
|
compiler: clang
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2018-05-30 01:14:04 +08:00
|
|
|
- env: CONFIG="--disable-user"
|
2016-10-27 21:23:45 +08:00
|
|
|
compiler: clang
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2016-03-16 00:12:58 +08:00
|
|
|
# gprof/gcov are GCC features
|
2018-06-12 21:24:20 +08: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 19:00:07 +08:00
|
|
|
after_success:
|
|
|
|
- ${SRC_DIR}/scripts/travis/coverage-summary.sh
|
2013-11-06 18:43:37 +08:00
|
|
|
compiler: gcc
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2016-03-16 00:12:58 +08:00
|
|
|
# We manually include builds which we disable "make check" for
|
|
|
|
- env: CONFIG="--enable-debug --enable-tcg-interpreter"
|
2016-01-28 18:21:15 +08:00
|
|
|
TEST_CMD=""
|
2013-11-06 18:43:37 +08:00
|
|
|
compiler: gcc
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2018-06-14 18:28:20 +08: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 18:21:15 +08:00
|
|
|
TEST_CMD=""
|
2013-11-06 18:43:37 +08:00
|
|
|
compiler: gcc
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2018-06-14 18:28:20 +08:00
|
|
|
- env: CONFIG="--enable-trace-backends=ftrace --target-list=x86_64-softmmu"
|
2016-01-28 18:21:15 +08:00
|
|
|
TEST_CMD=""
|
2014-03-12 22:13:51 +08:00
|
|
|
compiler: gcc
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2018-06-14 18:28:20 +08:00
|
|
|
- env: CONFIG="--enable-trace-backends=ust --target-list=x86_64-softmmu"
|
2016-01-28 18:29:17 +08:00
|
|
|
TEST_CMD=""
|
|
|
|
compiler: gcc
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2017-07-14 17:30:16 +08:00
|
|
|
- env: CONFIG="--disable-tcg"
|
|
|
|
TEST_CMD=""
|
|
|
|
compiler: gcc
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2018-10-08 18:56:13 +08: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-22 03:54:57 +08:00
|
|
|
os: osx
|
2018-10-08 18:56:13 +08:00
|
|
|
osx_image: xcode9.4
|
|
|
|
compiler: clang
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2018-10-08 18:56:13 +08:00
|
|
|
- env: CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
|
|
|
|
os: osx
|
|
|
|
osx_image: xcode10
|
2016-03-22 03:54:57 +08:00
|
|
|
compiler: clang
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2018-05-30 01:14:04 +08:00
|
|
|
# Python builds
|
|
|
|
- env: CONFIG="--target-list=x86_64-softmmu"
|
2018-01-16 21:42:16 +08:00
|
|
|
python:
|
|
|
|
- "3.0"
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2018-05-30 01:14:04 +08:00
|
|
|
- env: CONFIG="--target-list=x86_64-softmmu"
|
2018-01-16 21:42:16 +08:00
|
|
|
python:
|
|
|
|
- "3.6"
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2018-10-18 23:31:34 +08: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
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2016-10-01 05:31:03 +08:00
|
|
|
# Using newer GCC with sanitizers
|
|
|
|
- addons:
|
|
|
|
apt:
|
2018-05-30 16:09:31 +08:00
|
|
|
update: true
|
2016-10-01 05:31:03 +08:00
|
|
|
sources:
|
|
|
|
# PPAs for newer toolchains
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
# Extra toolchains
|
2018-05-30 16:09:31 +08:00
|
|
|
- gcc-7
|
|
|
|
- g++-7
|
2016-10-01 05:31:03 +08: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 16:09:31 +08:00
|
|
|
- COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7
|
|
|
|
- CONFIG="--cc=gcc-7 --cxx=g++-7 --disable-pie --disable-linux-user"
|
2016-10-01 05:31:03 +08:00
|
|
|
- TEST_CMD=""
|
|
|
|
before_script:
|
2018-06-12 16:28:23 +08:00
|
|
|
- ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || { cat config.log && exit 1; }
|
2019-01-10 00:31:06 +08:00
|
|
|
|
|
|
|
|
2018-04-18 23:55:37 +08:00
|
|
|
- env:
|
|
|
|
- CONFIG="--disable-system --disable-docs"
|
|
|
|
- TEST_CMD="make check-tcg"
|
|
|
|
script:
|
|
|
|
- make ${MAKEFLAGS} && ${TEST_CMD} ${MAKEFLAGS}
|
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
|
|
|
compiler: gcc
|