summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Moore <paul@paul-moore.com>2020-04-03 10:18:25 -0400
committerPaul Moore <paul@paul-moore.com>2020-04-03 10:20:38 -0400
commitc561096f6d8ec584ec3ff4aa7caded19842d8b28 (patch)
tree641233a6c120ccb911d89dcbf1709e7d0a5d9ef0
parent9dbba5bb9c7f4342621bc6d375ea4de81b8f3913 (diff)
downloadlibseccomp-c561096f6d8ec584ec3ff4aa7caded19842d8b28.tar.gz
travis: the arm64 build doesn't like cpp-coveralls
For some reason the Travis CI build is failing to pip install the cpp-coveralls package so let's skip it (we don't run the coveralls portions on arm64 anyway). Signed-off-by: Paul Moore <paul@paul-moore.com>
-rw-r--r--.travis.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 4e6c330..1bf4369 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -51,7 +51,10 @@ before_install:
# assume the distro has an old version of cython
- pip install cython
# see https://github.com/eddyxu/cpp-coveralls
- - pip install cpp-coveralls
+ - |
+ if [ $TRAVIS_CPU_ARCH == "amd64" ]; then
+ pip install cpp-coveralls
+ fi
# perform the build and fail immediately on error
install: