Skip to content
Snippets Groups Projects
Commit 4d1625d3 authored by Flavio TARSETTI's avatar Flavio TARSETTI
Browse files

[ci] installing locale in .gitlab-ci.yml

parent ff0b1abc
No related branches found
No related tags found
1 merge request!12Click beat editor
Pipeline #
...@@ -101,8 +101,13 @@ build_macosx_36: ...@@ -101,8 +101,13 @@ build_macosx_36:
image: docker.idiap.ch/beat/ci.env.editor:0.0.1r0 image: docker.idiap.ch/beat/ci.env.editor:0.0.1r0
before_script: before_script:
# safe keep artifacts as before_build.sh will erase those... # safe keep artifacts as before_build.sh will erase those...
- export LC_ALL=C.UTF-8 - apt-get update > /dev/null
- export LANG=C.UTF-8 - apt-get install -y locales > /dev/null
- echo "en_US UTF-8" > /etc/locale.gen
- locale-gen en_US.UTF-8
- export LANG=en_US.UTF-8
- export LANGUAGE=en_US:en
- export LC_ALL=en_US.UTF-8
- mv ${CONDA_ROOT}/conda-bld . - mv ${CONDA_ROOT}/conda-bld .
- ./_ci/install.sh _ci master #updates ci support scripts - ./_ci/install.sh _ci master #updates ci support scripts
- ./_ci/before_build.sh - ./_ci/before_build.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment