Skip to content

Commit 3ca4df0

Browse files
ezeeyahooreubenhwk
authored andcommitted
Adding PPC64LE support
1 parent d382a50 commit 3ca4df0

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.travis.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
arch:
2+
- amd64
3+
- ppc64le
4+
15
language: c
26

37
os:
@@ -14,14 +18,20 @@ addons:
1418
apt:
1519
packages:
1620
- check
21+
- make
1722
homebrew:
1823
packages:
1924
- check
2025

2126
script:
2227
- cd "$TRAVIS_BUILD_DIR"
2328
- ./autogen.sh
24-
- ./configure --with-check
29+
- |
30+
if [[ "$TRAVIS_CPU_ARCH" == "ppc64le" ]]; then
31+
./configure --with-check --without-stack-protector
32+
else
33+
./configure --with-check
34+
fi
2535
- make -j
2636
- make check
2737
- make dist-xz

0 commit comments

Comments
 (0)