Skip to content

Commit

Permalink
Bug 1361413 - Fix Docker image_builder tasks r=franziskus
Browse files Browse the repository at this point in the history
Differential Revision: https://nss-review.dev.mozaws.net/D303

--HG--
branch : NSS_TLS13_DRAFT19_BRANCH
extra : source : 46dbaa6600ca4aad48f5d282cfa9e8a4bb35792e
  • Loading branch information
Tim Taubert committed May 3, 2017
1 parent 92af96b commit 7a18ea3
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
5 changes: 3 additions & 2 deletions automation/taskcluster/docker-aarch64/setup.sh
Expand Up @@ -30,8 +30,9 @@ apt_packages+=('mercurial')
# Install packages.
apt-get install -y --no-install-recommends ${apt_packages[@]}

locale-gen en_US.UTF-8
dpkg-reconfigure locales
# XXX Currently broken (bug 1361413).
#locale-gen en_US.UTF-8
#dpkg-reconfigure locales

# Cleanup.
rm -rf ~/.ccache ~/.cache
Expand Down
5 changes: 3 additions & 2 deletions automation/taskcluster/docker-arm/setup.sh
Expand Up @@ -24,8 +24,9 @@ apt-get install -y --no-install-recommends ${apt_packages[@]}
pip install --upgrade pip
pip install Mercurial

locale-gen en_US.UTF-8
dpkg-reconfigure locales
# XXX Currently broken (bug 1361413).
#locale-gen en_US.UTF-8
#dpkg-reconfigure locales

# Cleanup.
rm -rf ~/.ccache ~/.cache
Expand Down
5 changes: 3 additions & 2 deletions automation/taskcluster/docker-clang-3.9/setup.sh
Expand Up @@ -34,8 +34,9 @@ tar xJvf *.tar.xz -C /usr/local --strip-components=1
# Cleanup.
rm *.tar.xz*

locale-gen en_US.UTF-8
dpkg-reconfigure locales
# XXX Currently broken (bug 1361413).
#locale-gen en_US.UTF-8
#dpkg-reconfigure locales

# Cleanup.
rm -rf ~/.ccache ~/.cache
Expand Down
6 changes: 3 additions & 3 deletions automation/taskcluster/docker-fuzz/setup.sh
Expand Up @@ -37,9 +37,9 @@ git -C clang-tmp/clang checkout HEAD scripts/update.py
clang-tmp/clang/scripts/update.py
rm -fr clang-tmp

# Generate locales.
locale-gen en_US.UTF-8
dpkg-reconfigure locales
# XXX Currently broken (bug 1361413).
#locale-gen en_US.UTF-8
#dpkg-reconfigure locales

# Cleanup.
rm -rf ~/.ccache ~/.cache
Expand Down
5 changes: 3 additions & 2 deletions automation/taskcluster/docker/setup.sh
Expand Up @@ -63,8 +63,9 @@ rm *.tar.xz*
# Install latest Rust (stable).
su worker -c "curl https://sh.rustup.rs -sSf | sh -s -- -y"

locale-gen en_US.UTF-8
dpkg-reconfigure locales
# XXX Currently broken (bug 1361413).
#locale-gen en_US.UTF-8
#dpkg-reconfigure locales

# Cleanup.
rm -rf ~/.ccache ~/.cache
Expand Down

0 comments on commit 7a18ea3

Please sign in to comment.