.travis.yml: migrate to container builds
This moves the Travis tests from the legacy VM infrastructure (which only seems to run 5-6 jobs at once) to the new container based approach. The principle difference is there is no sudo in the containers so all packages are installed using the apt add-on. This means one of the build combinations can be dropped as it was only for checking the build with additional packages. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Tested-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
ee8e8f92a7
commit
692d162cb2
44
.travis.yml
44
.travis.yml
@ -1,9 +1,37 @@
|
|||||||
|
sudo: false
|
||||||
language: c
|
language: c
|
||||||
python:
|
python:
|
||||||
- "2.4"
|
- "2.4"
|
||||||
compiler:
|
compiler:
|
||||||
- gcc
|
- gcc
|
||||||
- clang
|
- clang
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- libaio-dev
|
||||||
|
- libattr1-dev
|
||||||
|
- libbrlapi-dev
|
||||||
|
- libcap-ng-dev
|
||||||
|
- libgnutls-dev
|
||||||
|
- libgtk-3-dev
|
||||||
|
- libiscsi-dev
|
||||||
|
- liblttng-ust-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
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
irc:
|
irc:
|
||||||
channels:
|
channels:
|
||||||
@ -14,11 +42,6 @@ env:
|
|||||||
global:
|
global:
|
||||||
- TEST_CMD=""
|
- TEST_CMD=""
|
||||||
- EXTRA_CONFIG=""
|
- EXTRA_CONFIG=""
|
||||||
# Development packages, EXTRA_PKGS saved for additional builds
|
|
||||||
- CORE_PKGS="libusb-1.0-0-dev libiscsi-dev librados-dev libncurses5-dev"
|
|
||||||
- NET_PKGS="libseccomp-dev libgnutls-dev libssh2-1-dev libspice-server-dev libspice-protocol-dev libnss3-dev"
|
|
||||||
- GUI_PKGS="libgtk-3-dev libvte-2.90-dev libsdl1.2-dev libpng12-dev libpixman-1-dev"
|
|
||||||
- EXTRA_PKGS=""
|
|
||||||
matrix:
|
matrix:
|
||||||
# Group major targets together with their linux-user counterparts
|
# Group major targets together with their linux-user counterparts
|
||||||
- TARGETS=alpha-softmmu,alpha-linux-user
|
- TARGETS=alpha-softmmu,alpha-linux-user
|
||||||
@ -43,8 +66,6 @@ git:
|
|||||||
before_install:
|
before_install:
|
||||||
- wget -O - http://people.linaro.org/~alex.bennee/qemu-submodule-git-seed.tar.xz | tar -xvJ
|
- wget -O - http://people.linaro.org/~alex.bennee/qemu-submodule-git-seed.tar.xz | tar -xvJ
|
||||||
- git submodule update --init --recursive
|
- git submodule update --init --recursive
|
||||||
- sudo apt-get update -qq
|
|
||||||
- sudo apt-get install -qq ${CORE_PKGS} ${NET_PKGS} ${GUI_PKGS} ${EXTRA_PKGS}
|
|
||||||
before_script:
|
before_script:
|
||||||
- ./configure --target-list=${TARGETS} --enable-debug-tcg ${EXTRA_CONFIG}
|
- ./configure --target-list=${TARGETS} --enable-debug-tcg ${EXTRA_CONFIG}
|
||||||
script:
|
script:
|
||||||
@ -54,7 +75,7 @@ matrix:
|
|||||||
include:
|
include:
|
||||||
# Make check target (we only do this once)
|
# Make check target (we only do this once)
|
||||||
- env:
|
- env:
|
||||||
- TARGETS=alpha-softmmu,arm-softmmu,aarch64-softmmu,cris-softmmu,i386-softmmu,x86_64-softmmu,m68k-softmmu,microblaze-softmmu,microblazeel-softmmu,mips-softmmu,mips64-softmmu,mips64el-softmmu,mipsel-softmmu,or32-softmmu,ppc-softmmu,ppc64-softmmu,ppcemb-softmmu,s390x-softmmu,sh4-softmmu,sh4eb-softmmu,sparc-softmmu,sparc64-softmmu,unicore32-softmmu,unicore32-linux-user,lm32-softmmu,moxie-softmmu,tricore-softmmu,xtensa-softmmu,xtensaeb-softmmu
|
- TARGETS=alpha-softmmu,arm-softmmu,aarch64-softmmu,cris-softmmu,i386-softmmu,x86_64-softmmu,m68k-softmmu,microblaze-softmmu,microblazeel-softmmu,mips-softmmu,mips64-softmmu,mips64el-softmmu,mipsel-softmmu,or32-softmmu,ppc-softmmu,ppc64-softmmu,ppcemb-softmmu,s390x-softmmu,sh4-softmmu,sh4eb-softmmu,sparc-softmmu,sparc64-softmmu,unicore32-softmmu,lm32-softmmu,moxie-softmmu,tricore-softmmu,xtensa-softmmu,xtensaeb-softmmu
|
||||||
TEST_CMD="make check"
|
TEST_CMD="make check"
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
# Debug related options
|
# Debug related options
|
||||||
@ -64,16 +85,16 @@ matrix:
|
|||||||
- env: TARGETS=i386-softmmu,x86_64-softmmu
|
- env: TARGETS=i386-softmmu,x86_64-softmmu
|
||||||
EXTRA_CONFIG="--enable-debug --enable-tcg-interpreter"
|
EXTRA_CONFIG="--enable-debug --enable-tcg-interpreter"
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
# All the extra -dev packages
|
# Disable a few of the optional features
|
||||||
- env: TARGETS=i386-softmmu,x86_64-softmmu
|
- env: TARGETS=i386-softmmu,x86_64-softmmu
|
||||||
EXTRA_PKGS="libaio-dev libcap-ng-dev libattr1-dev libbrlapi-dev uuid-dev libusb-1.0.0-dev"
|
EXTRA_CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-uuid --disable-libusb"
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
# Currently configure doesn't force --disable-pie
|
# Currently configure doesn't force --disable-pie
|
||||||
- env: TARGETS=i386-softmmu,x86_64-softmmu
|
- env: TARGETS=i386-softmmu,x86_64-softmmu
|
||||||
EXTRA_CONFIG="--enable-gprof --enable-gcov --disable-pie"
|
EXTRA_CONFIG="--enable-gprof --enable-gcov --disable-pie"
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
|
# Sparse
|
||||||
- env: TARGETS=i386-softmmu,x86_64-softmmu
|
- env: TARGETS=i386-softmmu,x86_64-softmmu
|
||||||
EXTRA_PKGS="sparse"
|
|
||||||
EXTRA_CONFIG="--enable-sparse"
|
EXTRA_CONFIG="--enable-sparse"
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
# All the trace backends (apart from dtrace)
|
# All the trace backends (apart from dtrace)
|
||||||
@ -87,7 +108,6 @@ matrix:
|
|||||||
EXTRA_CONFIG="--enable-trace-backends=ftrace"
|
EXTRA_CONFIG="--enable-trace-backends=ftrace"
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
- env: TARGETS=i386-softmmu,x86_64-softmmu
|
- env: TARGETS=i386-softmmu,x86_64-softmmu
|
||||||
EXTRA_PKGS="liblttng-ust-dev liburcu-dev"
|
|
||||||
EXTRA_CONFIG="--enable-trace-backends=ust"
|
EXTRA_CONFIG="--enable-trace-backends=ust"
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
- env: TARGETS=i386-softmmu,x86_64-softmmu
|
- env: TARGETS=i386-softmmu,x86_64-softmmu
|
||||||
|
Loading…
Reference in New Issue
Block a user