diff options
author | louiz’ <louiz@louiz.org> | 2016-10-24 11:20:35 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-10-24 11:21:12 +0200 |
commit | 4359680f9df92475c439f16a163bf5a9b37813b3 (patch) | |
tree | 95645e813d9f8532f49e49b765557ccfcf7809f2 | |
parent | fed21b7e9f3d08af7b4c30e5c75e2fabf2e80542 (diff) | |
download | biboumi-4359680f9df92475c439f16a163bf5a9b37813b3.tar.gz biboumi-4359680f9df92475c439f16a163bf5a9b37813b3.tar.bz2 biboumi-4359680f9df92475c439f16a163bf5a9b37813b3.tar.xz biboumi-4359680f9df92475c439f16a163bf5a9b37813b3.zip |
Fix test encoding by setting LANG and LC_ALL to C.UTF-8
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 484cdc0..29124eb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,8 @@ before_script: - uname -a - whoami + - export LC_ALL=C.UTF-8 + - export LANG=C.UTF-8 - echo $LANG - g++ --version - clang++ --version |