summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsanjay-cpu <snjkmr32@gmail.com>2020-10-08 20:14:09 +0000
committersanjay-cpu <snjkmr32@gmail.com>2020-10-08 20:24:00 +0000
commit100829a3d9939b45acdfd3a5d4eceae2cc490066 (patch)
tree4713076efedb75448e3157ddf37c948a4a3a0693
parent4baf608fd636624504c6a9c9389294023073ba9f (diff)
Travis-ci: added support for ppc64le
-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: