.travis.yml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # We require a full (virtual) machine to load the kernel module for
  2. # binfmt support, which is needed to test other architectures besides
  3. # x86 using qemu user emulation. (This will not work in a container.)
  4. sudo: required
  5. dist: trusty
  6. language: c
  7. script:
  8. - make $FLAGS
  9. - make check $FLAGS $TEST_FLAGS
  10. - make clean && git status --ignored --porcelain && test -z "$(git status --ignored --porcelain)"
  11. matrix:
  12. include:
  13. - compiler: clang
  14. os: linux
  15. addons:
  16. apt:
  17. sources:
  18. - ubuntu-toolchain-r-test
  19. - llvm-toolchain-precise-3.7
  20. packages:
  21. - clang-3.7
  22. env: FLAGS="CC=clang-3.7 CXX=clang++-3.7"
  23. - os: osx
  24. env: FLAGS="CC=clang"
  25. - os: linux
  26. env: FLAGS="CC=gcc"
  27. - os: linux
  28. env: FLAGS="CC=gcc ARCH=i686" # implies -m32 -march=i686
  29. addons:
  30. apt:
  31. packages:
  32. - gcc-multilib
  33. - os: linux
  34. env: FLAGS="CC=aarch64-linux-gnu-gcc" TEST_FLAGS="LDFLAGS=-static"
  35. addons:
  36. apt:
  37. packages:
  38. - gcc-aarch64-linux-gnu
  39. - libc6-dev-arm64-cross
  40. - qemu-user-static
  41. - binfmt-support
  42. - os: linux
  43. env: FLAGS="CC=arm-linux-gnueabihf-gcc" TEST_FLAGS="LDFLAGS=-static"
  44. addons:
  45. apt:
  46. packages:
  47. - gcc-arm-linux-gnueabihf
  48. - libc6-dev-armhf-cross
  49. - qemu-user-static
  50. - binfmt-support
  51. # This works, but only if qemu-user-static is >= v2.4. This is not the
  52. # case on the default trusty images, so we add a PPA that has qemu 2.5
  53. - os: linux
  54. env: FLAGS="CC=powerpc64le-linux-gnu-gcc" TEST_FLAGS="LDFLAGS=-static"
  55. addons:
  56. apt:
  57. sources:
  58. - sourceline: "ppa:gns3/qemu"
  59. packages:
  60. - gcc-powerpc64le-linux-gnu
  61. - libc6-dev-ppc64el-cross
  62. - qemu-user-static
  63. - binfmt-support
  64. notifications:
  65. email: false