From f91d1310084c2b2be3070f64297a48a3a9adcd9a Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sun, 14 May 2017 09:59:22 +0200 Subject: [PATCH] jenkins: modern python mandate UTF8 locales --- tools/jenkins/build.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/jenkins/build.sh b/tools/jenkins/build.sh index 1421468644..3ceb6d8612 100755 --- a/tools/jenkins/build.sh +++ b/tools/jenkins/build.sh @@ -7,8 +7,9 @@ set -e -# ensure that the locales are set, so that perl keeps its nerves -export LC_ALL=C +# Ensure that the locales are set, so that Perl keeps its nerves. +# Not forgeting UTF to not drive Python crazy. +export LC_ALL=C.UTF-8 echo "XXXX Cleanup previous attempts. Remaining content of /tmp:" rm -rf /tmp/simgrid-java* -- 2.20.1