We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d382a50 commit 3ca4df0Copy full SHA for 3ca4df0
.travis.yml
@@ -1,3 +1,7 @@
1
+arch:
2
+ - amd64
3
+ - ppc64le
4
+
5
language: c
6
7
os:
@@ -14,14 +18,20 @@ addons:
14
18
apt:
15
19
packages:
16
20
- check
21
+ - make
17
22
homebrew:
23
24
25
26
script:
27
- cd "$TRAVIS_BUILD_DIR"
28
- ./autogen.sh
- - ./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
35
- make -j
36
- make check
37
- make dist-xz
0 commit comments