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}
|
2017-04-13 04:02:36 -04: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.
|
2017-07-13 08:49:12 -04:00
|
|
|
retry gem install knapsack
|
2017-05-02 12:55:06 -04:00
|
|
|
|
|
|
|
cp config/gitlab.yml.example config/gitlab.yml
|
|
|
|
|
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
|
|
|
|
|
|
|
|
if [ "$GITLAB_DATABASE" = 'postgresql' ]; then
|
|
|
|
sed -i 's/# host:.*/host: postgres/g' config/database.yml
|
|
|
|
else # Assume it's mysql
|
|
|
|
sed -i 's/username:.*/username: root/g' config/database.yml
|
|
|
|
sed -i 's/password:.*/password:/g' config/database.yml
|
|
|
|
sed -i 's/# host:.*/host: 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
|
|
|
|
bundle exec rake db:drop db:create db:schema:load db:migrate
|
|
|
|
|
|
|
|
if [ "$GITLAB_DATABASE" = "mysql" ]; then
|
|
|
|
bundle exec rake add_limits_mysql
|
|
|
|
fi
|
|
|
|
fi
|