diff options
author | Mark de Wever <koraq@xs4all.nl> | 2022-03-30 17:30:39 +0200 |
---|---|---|
committer | Mark de Wever <koraq@xs4all.nl> | 2022-03-31 17:41:06 +0200 |
commit | 11c14bca58e64477228d114de00a7eff473d2fd4 (patch) | |
tree | 09174d736c29e2474f79e3b516a01537f2dce436 | |
parent | e3ad15d7ffc66c3b014cd17b4346afe79b3db979 (diff) | |
download | llvm-11c14bca58e64477228d114de00a7eff473d2fd4.zip llvm-11c14bca58e64477228d114de00a7eff473d2fd4.tar.gz llvm-11c14bca58e64477228d114de00a7eff473d2fd4.tar.bz2 |
[libc++][ci] Installs Japanese locale in Docker.
The alternative outputs of std::put_time and std::strftime are the
easiest to test with the Japanese locale. This is a preparation for the
tests of the chrono formatters.
Note since it takes a while before the Docker file changes propagate to
the build nodes the verification of the locale is done in a separate
patch.
Reviewed By: ldionne, #libc
Differential Revision: https://reviews.llvm.org/D122736
-rw-r--r-- | libcxx/utils/ci/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libcxx/utils/ci/Dockerfile b/libcxx/utils/ci/Dockerfile index da6dc0f..1950bda 100644 --- a/libcxx/utils/ci/Dockerfile +++ b/libcxx/utils/ci/Dockerfile @@ -46,7 +46,8 @@ RUN apt-get update && apt-get install -y ninja-build python3 python3-sphinx pyth # Locales for gdb and localization tests RUN apt-get update && apt-get install -y language-pack-en language-pack-fr \ - language-pack-ru language-pack-zh-hans + language-pack-ja language-pack-ru \ + language-pack-zh-hans # These two are not enabled by default so generate them RUN printf "fr_CA ISO-8859-1\ncs_CZ ISO-8859-2" >> /etc/locale.gen RUN mkdir /usr/local/share/i1en/ |