Skip to content

Commit

Permalink
travis: the arm64 build doesn't like cpp-coveralls
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
pcmoore committed Apr 3, 2020
1 parent 9dbba5b commit c561096
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c561096

Please sign in to comment.