Merge pull request #438 from daxtens/next

Travis CI: Test on other platforms
This commit is contained in:
Robert Edmonds 2020-09-06 17:29:43 -04:00 committed by GitHub
commit 5f2484642b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,8 +2,13 @@ language:
- c
- cpp
sudo: required
dist: xenial
arch:
- amd64
- arm64
- ppc64le
- s390x
dist: bionic
addons:
apt:
@ -31,4 +36,6 @@ script:
- ( mkdir build-cmake/bin && cd build-cmake/bin && cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=protobuf-c-bin ../ && make -j2 && make test && make install)
after_success:
- cpp-coveralls --build-root . --exclude t/ --exclude /usr/include --exclude protobuf-$PROTOBUF_VERSION --exclude protoc-c
- if [ $(uname -m) = "x86_64" ]; then
cpp-coveralls --build-root . --exclude t/ --exclude /usr/include --exclude protobuf-$PROTOBUF_VERSION --exclude protoc-c;
fi