summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml27
1 files changed, 21 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index cc02be5..186ea64 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,12 +1,27 @@
dist: trusty
sudo: false
language: c
-compiler:
- - clang
- - gcc
-os:
- - linux
- - osx
+
+matrix:
+ include:
+ - os: linux
+ arch: amd64
+ compiler: clang
+ - os: linux
+ arch: ppc64le
+ compiler: clang
+ - os: osx
+ arch: amd64
+ compiler: clang
+ - os: linux
+ arch: amd64
+ compiler: gcc
+ - os: linux
+ arch: ppc64le
+ compiler: gcc
+ - os: osx
+ arch: amd64
+ compiler: gcc
script: make && make check
jobs:
include: