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

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