diff options
author | Fedja Beader <fedja@protonmail.ch> | 2024-02-07 21:35:43 +0100 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2024-02-07 21:36:21 +0100 |
commit | e1ef001d8b14c2e7eddf9b550e8a6bf67d5aab60 (patch) | |
tree | 52229c06c3a2a1d07e312ab424b2210ba712767f | |
parent | 90729e374906ec914a9d030c6cce1feca718e0b7 (diff) | |
download | tmwa-e1ef001d8b14c2e7eddf9b550e8a6bf67d5aab60.tar.gz tmwa-e1ef001d8b14c2e7eddf9b550e8a6bf67d5aab60.tar.bz2 tmwa-e1ef001d8b14c2e7eddf9b550e8a6bf67d5aab60.tar.xz tmwa-e1ef001d8b14c2e7eddf9b550e8a6bf67d5aab60.zip |
Package locales supposedly provides update-locale
-rw-r--r-- | .gitlab-ci.yml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 778e395..bbfd37d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,8 @@ stages: - test variables: &base_vars - DEBIAN_COMMON_PACKAGES: make python3.7 python3 git gcc g++ + # Package locales supposedly provides update-locale + DEBIAN_COMMON_PACKAGES: make python3.7 python3 git gcc g++ locales GIT_DEPTH: 100 # Will break again eventually. .prerequisites: &prerequisites @@ -14,9 +15,15 @@ variables: &base_vars - apt-get install -y -qq $INSTALL_PACKAGES $DEBIAN_COMMON_PACKAGES - locale # Ubuntu 18.04 has busted locales. LANG and all LC_* are empty. + - cat /etc/default/locale + - echo "environment:" + - cat /etc/environment + #- echo 'LANG=en_US.UTF-8' > /etc/default/locale - update-locale LANG=en_US.UTF-8 - - apt-cache search python3 - locale + #- locale-gen + #- locale + - apt-cache search python3 # Compilers variables: |