Browse code

Merge pull request #148 from sanjaymsh/ppc64le

Travis-ci: added support for ppc64le

John Hawthorn authored on 12/10/2020 00:55:50 • GitHub committed on 12/10/2020 00:55:50
Showing 1 changed files

... ...
@@ -1,12 +1,27 @@
1 1
 dist: trusty
2 2
 sudo: false
3 3
 language: c
4
-compiler:
5
-  - clang
6
-  - gcc
7
-os:
8
-  - linux
9
-  - osx
4
+
5
+matrix:
6
+   include:
7
+       - os: linux
8
+         arch: amd64
9
+         compiler: clang
10
+       - os: linux
11
+         arch: ppc64le
12
+         compiler: clang
13
+       - os: osx
14
+         arch: amd64
15
+         compiler: clang
16
+       - os: linux
17
+         arch: amd64
18
+         compiler: gcc 
19
+       - os: linux
20
+         arch: ppc64le
21
+         compiler: gcc 
22
+       - os: osx
23
+         arch: amd64
24
+         compiler: gcc 
10 25
 script: make && make check
11 26
 jobs:
12 27
   include: