From c561096f6d8ec584ec3ff4aa7caded19842d8b28 Mon Sep 17 00:00:00 2001 From: Paul Moore Date: Fri, 3 Apr 2020 10:18:25 -0400 Subject: 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 --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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: -- cgit v1.2.1