[kvm-unit-tests PATCH v2 9/9] .travis.yml: initial build matrix

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This adds a TravisCI build matrix to test all the various build
combinations of architecture and with/without out-of-tree builds. It
currently fails because the Trusty compilers have some issues with
various format strings and unsigned/signed comparisions but these can
be fixed up later.

Signed-off-by: Alex Bennée <alex.bennee@xxxxxxxxxx>
---
 .travis.yml | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)
 create mode 100644 .travis.yml

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..edccfe0
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,43 @@
+sudo: false
+dist: trusty
+language: c
+compiler:
+  - gcc
+cache: ccache
+addons:
+  apt:
+    packages:
+      # Cross Toolchains
+      - gcc-arm-linux-gnueabihf
+      - gcc-aarch64-linux-gnu
+      - gcc-powerpc64le-linux-gnu
+      # Run dependencies
+      - qemu-system
+git:
+  submodules: false
+env:
+  matrix:
+    - CONFIG=""
+      BUILD_DIR="."
+    - CONFIG=""
+      BUILD_DIR="x86-builddir"
+    - CONFIG="--arch=arm --cross-prefix=arm-linux-gnueabihf-"
+      BUILD_DIR="."
+    - CONFIG="--arch=arm --cross-prefix=arm-linux-gnueabihf-"
+      BUILD_DIR="arm-buildir"
+    - CONFIG="--arch=arm64 --cross-prefix=aarch64-linux-gnu-"
+      BUILD_DIR="."
+    - CONFIG="--arch=arm64 --cross-prefix=aarch64-linux-gnu-"
+      BUILD_DIR="arm64-buildir"
+    - CONFIG="--arch=ppc64 --endian=little --cross-prefix=powerpc64le-linux-gnu-"
+      BUILD_DIR="."
+    - CONFIG="--arch=ppc64 --endian=little --cross-prefix=powerpc64le-linux-gnu-"
+      BUILD_DIR="ppc64le-buildir"
+
+before_script:
+  - mkdir -p $BUILD_DIR && cd $BUILD_DIR
+  - if [ -e ./configure ]; then ./configure $CONFIG ; fi
+  - if [ -e ../configure ]; then ../configure $CONFIG ; fi
+script:
+  - make -j3
+  - ./run_tests.sh || true
-- 
2.11.0




[Index of Archives]     [KVM ARM]     [KVM ia64]     [KVM ppc]     [Virtualization Tools]     [Spice Development]     [Libvirt]     [Libvirt Users]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite Questions]     [Linux Kernel]     [Linux SCSI]     [XFree86]

  Powered by Linux