Skip to content
Snippets Groups Projects
Commit 53d9e195 authored by Achilleas Pipinellis's avatar Achilleas Pipinellis
Browse files

Use unicode in CI

parent 4477dc24
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -28,7 +28,12 @@ if [ -f /.dockerenv ] || [ -f ./dockerinit ]; then
 
# Try to install packages
retry 'apt-get update -yqqq; apt-get -o dir::cache::archives="vendor/apt" install -y -qq --force-yes \
libicu-dev libkrb5-dev cmake nodejs postgresql-client mysql-client unzip'
libicu-dev libkrb5-dev cmake nodejs postgresql-client mysql-client unzip locales'
# Set locale to utf8
echo "en_US.UTF-8 UTF-8" > /etc/locale.gen
locale-gen
export LC_ALL=en_US.UTF-8
 
cp config/database.yml.mysql config/database.yml
sed -i 's/username:.*/username: root/g' config/database.yml
Loading
Loading
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