From 113bf129c81da1d7dee96ca855d1c6fe8708281c Mon Sep 17 00:00:00 2001
From: Ben Gamari <ben@smart-cactus.org>
Date: Sat, 23 Nov 2019 09:59:15 -0500
Subject: [PATCH] gitlab-ci: Set LANG on CentOS 7

It otherwise seems to default to ascii

(cherry picked from commit b6f7e407b05b5a65089a7a0e0d4f12b72580afe3)
---
 .gitlab-ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0c80e89293e0..241ce112ac74 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -715,6 +715,8 @@ release-x86_64-linux-centos7:
     BIN_DIST_PREP_TAR_COMP: "ghc-x86_64-centos7-linux.tar.xz"
     # pxz is not available on centos7 for reasons I can't understand
     XZ: "xz"
+    # CentOS seems to default to ascii
+    LANG: "en_US.UTF-8"
   only:
     - tags
   cache:
-- 
GitLab