debian-mirror-gitlab/scripts/prepare_build.sh

57 lines
2 KiB
Bash
Raw Normal View History

2017-08-17 22:00:37 +05:30
. scripts/utils.sh
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
export SETUP_DB=${SETUP_DB:-true}
2018-03-17 18:26:18 +05:30
export CREATE_DB_USER=${CREATE_DB_USER:-$SETUP_DB}
2017-08-17 22:00:37 +05:30
export USE_BUNDLE_INSTALL=${USE_BUNDLE_INSTALL:-true}
2018-03-17 18:26:18 +05:30
export BUNDLE_INSTALL_FLAGS="--without=production --jobs=$(nproc) --path=vendor --retry=3 --quiet"
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
if [ "$USE_BUNDLE_INSTALL" != "false" ]; then
bundle install --clean $BUNDLE_INSTALL_FLAGS && bundle check
fi
# Only install knapsack after bundle install! Otherwise oddly some native
# gems could not be found under some circumstance. No idea why, hours wasted.
2019-01-20 21:35:32 +05:30
retry gem install knapsack --no-document
2017-09-10 17:25:29 +05:30
cp config/gitlab.yml.example config/gitlab.yml
2018-03-17 18:26:18 +05:30
sed -i 's/bin_path: \/usr\/bin\/git/bin_path: \/usr\/local\/bin\/git/' config/gitlab.yml
2017-09-10 17:25:29 +05:30
2017-08-17 22:00:37 +05:30
# Determine the database by looking at the job name.
2017-09-10 17:25:29 +05:30
# For example, we'll get pg if the job is `rspec-pg 19 20`
export GITLAB_DATABASE=$(echo $CI_JOB_NAME | cut -f1 -d' ' | cut -f2 -d-)
2017-08-17 22:00:37 +05:30
# This would make the default database postgresql, and we could also use
# pg to mean postgresql.
if [ "$GITLAB_DATABASE" != 'mysql' ]; then
export GITLAB_DATABASE='postgresql'
fi
2017-08-17 22:00:37 +05:30
cp config/database.yml.$GITLAB_DATABASE config/database.yml
2018-03-17 18:26:18 +05:30
# Set user to a non-superuser to ensure we test permissions
sed -i 's/username: root/username: gitlab/g' config/database.yml
2017-08-17 22:00:37 +05:30
if [ "$GITLAB_DATABASE" = 'postgresql' ]; then
2018-03-17 18:26:18 +05:30
sed -i 's/localhost/postgres/g' config/database.yml
2017-08-17 22:00:37 +05:30
else # Assume it's mysql
2018-03-17 18:26:18 +05:30
sed -i 's/localhost/mysql/g' config/database.yml
2017-08-17 22:00:37 +05:30
fi
cp config/resque.yml.example config/resque.yml
sed -i 's/localhost/redis/g' config/resque.yml
2017-09-10 17:25:29 +05:30
cp config/redis.cache.yml.example config/redis.cache.yml
sed -i 's/localhost/redis/g' config/redis.cache.yml
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
cp config/redis.queues.yml.example config/redis.queues.yml
sed -i 's/localhost/redis/g' config/redis.queues.yml
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
cp config/redis.shared_state.yml.example config/redis.shared_state.yml
sed -i 's/localhost/redis/g' config/redis.shared_state.yml
2017-08-17 22:00:37 +05:30
if [ "$SETUP_DB" != "false" ]; then
2018-11-08 19:23:39 +05:30
setup_db
elif getent hosts postgres || getent hosts mysql; then
setup_db_user_only
2015-09-11 14:41:01 +05:30
fi