2017-03-22 10:31:07 -04:00
|
|
|
. scripts/utils.sh
|
2016-06-07 07:06:24 -04:00
|
|
|
|
2017-03-22 10:31:07 -04:00
|
|
|
export SETUP_DB=${SETUP_DB:-true}
|
2017-11-09 15:18:26 -05:00
|
|
|
export CREATE_DB_USER=${CREATE_DB_USER:-$SETUP_DB}
|
2017-03-22 10:31:07 -04:00
|
|
|
export USE_BUNDLE_INSTALL=${USE_BUNDLE_INSTALL:-true}
|
2018-01-22 05:13:33 -05:00
|
|
|
export BUNDLE_INSTALL_FLAGS="--without=production --jobs=$(nproc) --path=vendor --retry=3 --quiet"
|
2016-03-09 15:22:25 -05:00
|
|
|
|
2017-05-02 12:55:06 -04:00
|
|
|
if [ "$USE_BUNDLE_INSTALL" != "false" ]; then
|
|
|
|
bundle install --clean $BUNDLE_INSTALL_FLAGS && bundle check
|
|
|
|
fi
|
|
|
|
|
2017-07-11 06:59:16 -04:00
|
|
|
# Only install knapsack after bundle install! Otherwise oddly some native
|
2017-05-02 12:55:06 -04:00
|
|
|
# gems could not be found under some circumstance. No idea why, hours wasted.
|
2018-05-18 09:32:07 -04:00
|
|
|
retry gem install knapsack --no-ri --no-rdoc
|
2017-05-02 12:55:06 -04:00
|
|
|
|
|
|
|
cp config/gitlab.yml.example config/gitlab.yml
|
2017-11-22 10:41:24 -05:00
|
|
|
sed -i 's/bin_path: \/usr\/bin\/git/bin_path: \/usr\/local\/bin\/git/' config/gitlab.yml
|
2017-05-02 12:55:06 -04:00
|
|
|
|
2017-04-13 03:48:25 -04:00
|
|
|
# Determine the database by looking at the job name.
|
2017-05-02 12:55:06 -04:00
|
|
|
# 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-04-13 03:48:25 -04:00
|
|
|
|
|
|
|
# This would make the default database postgresql, and we could also use
|
|
|
|
# pg to mean postgresql.
|
2017-04-10 09:59:53 -04:00
|
|
|
if [ "$GITLAB_DATABASE" != 'mysql' ]; then
|
2017-04-10 07:09:02 -04:00
|
|
|
export GITLAB_DATABASE='postgresql'
|
|
|
|
fi
|
|
|
|
|
2017-04-12 04:11:35 -04:00
|
|
|
cp config/database.yml.$GITLAB_DATABASE config/database.yml
|
|
|
|
|
2017-11-09 15:18:26 -05:00
|
|
|
# Set user to a non-superuser to ensure we test permissions
|
|
|
|
sed -i 's/username: root/username: gitlab/g' config/database.yml
|
|
|
|
|
2017-04-12 04:11:35 -04:00
|
|
|
if [ "$GITLAB_DATABASE" = 'postgresql' ]; then
|
2017-03-26 17:53:36 -04:00
|
|
|
sed -i 's/localhost/postgres/g' config/database.yml
|
2017-04-12 04:11:35 -04:00
|
|
|
else # Assume it's mysql
|
2017-03-26 17:53:36 -04:00
|
|
|
sed -i 's/localhost/mysql/g' config/database.yml
|
2015-06-17 06:23:43 -04:00
|
|
|
fi
|
2017-03-22 10:31:07 -04:00
|
|
|
|
2017-07-10 23:35:47 -04:00
|
|
|
cp config/resque.yml.example config/resque.yml
|
|
|
|
sed -i 's/localhost/redis/g' config/resque.yml
|
|
|
|
|
|
|
|
cp config/redis.cache.yml.example config/redis.cache.yml
|
|
|
|
sed -i 's/localhost/redis/g' config/redis.cache.yml
|
|
|
|
|
|
|
|
cp config/redis.queues.yml.example config/redis.queues.yml
|
|
|
|
sed -i 's/localhost/redis/g' config/redis.queues.yml
|
|
|
|
|
|
|
|
cp config/redis.shared_state.yml.example config/redis.shared_state.yml
|
|
|
|
sed -i 's/localhost/redis/g' config/redis.shared_state.yml
|
|
|
|
|
2017-03-22 10:31:07 -04:00
|
|
|
if [ "$SETUP_DB" != "false" ]; then
|
2018-05-11 11:06:08 -04:00
|
|
|
setup_db
|
2018-05-14 13:49:46 -04:00
|
|
|
elif getent hosts postgres || getent hosts mysql; then
|
|
|
|
setup_db_user_only
|
2017-03-22 10:31:07 -04:00
|
|
|
fi
|