From a812f3abba6aa329d3b2feb6a21bc732675ea95d Mon Sep 17 00:00:00 2001 From: Dominique Benielli <dominique.benielli@univ-amu.fr> Date: Tue, 13 May 2025 12:09:03 +0200 Subject: [PATCH] Edit .gitlab-ci.yml --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d15c004f..90a126f8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,8 +4,8 @@ tests: tags: - docker script: - - export LC_ALL=$(locale -a | grep en_US) - - export LANG=$(locale -a | grep en_US) + - export LC_ALL=C.UTF-8 + - export LANG=C.UTF-8 - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi - pip3 install git+https://github.com/thibgo/randomscm.git@v0.0.0-alpha - pip3 install git+https://github.com/multi-learn/scikit-multimodallearn.git @@ -26,8 +26,8 @@ doc: - master - develop script: - - export LC_ALL=$(locale -a | grep en_US) - - export LANG=$(locale -a | grep en_US) + - export LC_ALL=C.UTF-8 + - export LANG=C.UTF-8 - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi - pip3 install git+https://github.com/thibgo/randomscm.git@v0.0.0-alpha - pip3 install git+https://github.com/multi-learn/scikit-multimodallearn.git @@ -50,8 +50,8 @@ pages: only: - master script: - - export LC_ALL=$(locale -a | grep en_US) - - export LANG=$(locale -a | grep en_US) + - export LC_ALL=C.UTF-8 + - export LANG=C.UTF-8 - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi - pip3 install git+https://github.com/thibgo/randomscm.git@v0.0.0-alpha - pip3 install git+https://github.com/multi-learn/scikit-multimodallearn.git -- GitLab