summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hawthorn <john@hawthorn.email>2020-10-11 17:55:50 -0700
committerGitHub <noreply@github.com>2020-10-11 17:55:50 -0700
commitbc1c532172dce2b0ee3eef4696bb58d66bdb08cd (patch)
tree4713076efedb75448e3157ddf37c948a4a3a0693
parent4baf608fd636624504c6a9c9389294023073ba9f (diff)
parent100829a3d9939b45acdfd3a5d4eceae2cc490066 (diff)
Merge pull request #148 from sanjaymsh/ppc64le
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: