1
1
mirror of https://github.com/bitcoin/bitcoin.git synced 2024-05-17 23:56:39 +00:00

ci: Set LC_ALL=C when running in qemu-s390x

This avoids std::runtime_error in the unit tests of the type
"locale::facet::_S_create_c_locale name not valid"
This commit is contained in:
MarcoFalke 2019-12-17 22:02:48 -05:00
parent fa3d77623e
commit fa569e1a9c
No known key found for this signature in database
GPG Key ID: CE2B75697E69A548

View File

@ -9,6 +9,9 @@ export LC_ALL=C.UTF-8
if [[ $DOCKER_NAME_TAG == centos* ]]; then
export LC_ALL=en_US.utf8
fi
if [[ $QEMU_USER_CMD == qemu-s390* ]]; then
export LC_ALL=C
fi
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
set +o errexit