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}
|
|
|
|
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
|
2019-05-22 08:16:49 -04:00
|
|
|
bundle --version
|
2018-12-13 15:32:42 -05:00
|
|
|
bundle install --clean $BUNDLE_INSTALL_FLAGS && bundle check
|
2017-05-02 12:55:06 -04:00
|
|
|
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-12-31 04:30:23 -05:00
|
|
|
retry gem install knapsack --no-document
|
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.
|
2019-05-22 07:10:19 -04:00
|
|
|
# This would make the default database postgresql.
|
|
|
|
if [[ "${CI_JOB_NAME#*mysql}" != "$CI_JOB_NAME" ]]; then
|
|
|
|
export GITLAB_DATABASE='mysql'
|
|
|
|
else
|
2018-12-13 15:32:42 -05:00
|
|
|
export GITLAB_DATABASE='postgresql'
|
2017-04-10 07:09:02 -04:00
|
|
|
fi
|
|
|
|
|
2017-04-12 04:11:35 -04:00
|
|
|
cp config/database.yml.$GITLAB_DATABASE config/database.yml
|
|
|
|
|
2018-12-13 15:32:42 -05:00
|
|
|
if [ -f config/database_geo.yml.$GITLAB_DATABASE ]; then
|
|
|
|
cp config/database_geo.yml.$GITLAB_DATABASE config/database_geo.yml
|
|
|
|
fi
|
|
|
|
|
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
|
2018-12-13 15:32:42 -05:00
|
|
|
sed -i 's/localhost/postgres/g' config/database.yml
|
|
|
|
|
|
|
|
if [ -f config/database_geo.yml ]; then
|
|
|
|
sed -i 's/localhost/postgres/g' config/database_geo.yml
|
|
|
|
fi
|
2017-04-12 04:11:35 -04:00
|
|
|
else # Assume it's mysql
|
2018-12-13 15:32:42 -05:00
|
|
|
sed -i 's/localhost/mysql/g' config/database.yml
|
|
|
|
|
|
|
|
if [ -f config/database_geo.yml ]; then
|
|
|
|
sed -i 's/localhost/mysql/g' config/database_geo.yml
|
|
|
|
fi
|
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-12-13 15:32:42 -05:00
|
|
|
setup_db
|
2018-05-14 13:49:46 -04:00
|
|
|
elif getent hosts postgres || getent hosts mysql; then
|
2018-12-13 15:32:42 -05:00
|
|
|
setup_db_user_only
|
2017-03-22 10:31:07 -04:00
|
|
|
fi
|