debian-mirror-gitlab/scripts/prepare_build.sh

35 lines
1,003 B
Bash
Raw Normal View History

2015-09-11 14:41:01 +05:30
#!/bin/bash
2016-04-02 18:10:28 +05:30
2016-06-02 11:05:42 +05:30
retry() {
if eval "$@"; then
return 0
fi
for i in 2 1; do
sleep 3s
echo "Retrying $i..."
2016-06-02 11:05:42 +05:30
if eval "$@"; then
return 0
fi
done
return 1
}
if [ -f /.dockerenv ] || [ -f ./dockerinit ]; then
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
2016-11-03 12:29:30 +05:30
export FLAGS=(--path vendor --retry 3 --quiet)
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