debian-mirror-gitlab/scripts/prepare_build.sh

31 lines
1.2 KiB
Bash
Raw Normal View History

2015-09-11 14:41:01 +05:30
#!/bin/bash
2016-04-02 18:10:28 +05:30
2015-09-11 14:41:01 +05:30
if [ -f /.dockerinit ]; then
2016-04-02 18:10:28 +05:30
mkdir -p vendor
if [ ! -e vendor/phantomjs_1.9.8-0jessie_amd64.deb ]; then
wget -q https://gitlab.com/axil/phantomjs-debian/raw/master/phantomjs_1.9.8-0jessie_amd64.deb
mv phantomjs_1.9.8-0jessie_amd64.deb vendor/
fi
dpkg -i vendor/phantomjs_1.9.8-0jessie_amd64.deb
2015-09-11 14:41:01 +05:30
apt-get update -qq
2016-04-02 18:10:28 +05:30
apt-get -o dir::cache::archives="vendor/apt" install -y -qq --force-yes \
libicu-dev libkrb5-dev cmake nodejs postgresql-client mysql-client unzip
2015-09-11 14:41:01 +05:30
cp config/database.yml.mysql config/database.yml
sed -i 's/username:.*/username: root/g' config/database.yml
sed -i 's/password:.*/password:/g' config/database.yml
sed -i 's/# socket:.*/host: mysql/g' config/database.yml
cp config/resque.yml.example config/resque.yml
sed -i 's/localhost/redis/g' config/resque.yml
2016-04-02 18:10:28 +05:30
export FLAGS=(--path vendor)
2015-09-11 14:41:01 +05:30
else
export PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin
cp config/database.yml.mysql config/database.yml
sed "s/username\:.*$/username\: runner/" -i config/database.yml
sed "s/password\:.*$/password\: 'password'/" -i config/database.yml
sed "s/gitlabhq_test/gitlabhq_test_$((RANDOM/5000))/" -i config/database.yml
fi