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}
|
2020-09-22 08:09:39 -04:00
|
|
|
export BUNDLE_INSTALL_FLAGS=${BUNDLE_INSTALL_FLAGS:-"--without=production development --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
|
2020-05-14 11:08:14 -04:00
|
|
|
run_timed_command "bundle install --clean ${BUNDLE_INSTALL_FLAGS}"
|
|
|
|
run_timed_command "bundle check"
|
|
|
|
# When we test multiple versions of PG in the same pipeline, we have a single `setup-test-env`
|
|
|
|
# job but the `pg` gem needs to be rebuilt since it includes extensions (https://guides.rubygems.org/gems-with-extensions).
|
|
|
|
# Uncomment the following line if multiple versions of PG are tested in the same pipeline.
|
2020-07-09 08:08:56 -04:00
|
|
|
run_timed_command "bundle pristine pg"
|
2017-05-02 12:55:06 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
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
|
|
|
|
2019-11-19 10:06:24 -05:00
|
|
|
cp config/database.yml.postgresql config/database.yml
|
2017-04-12 04:11:35 -04:00
|
|
|
|
2019-11-19 10:06:24 -05:00
|
|
|
if [ -f config/database_geo.yml.postgresql ]; then
|
|
|
|
cp config/database_geo.yml.postgresql config/database_geo.yml
|
2018-12-13 15:32:42 -05:00
|
|
|
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
|
|
|
|
|
2019-11-19 10:06:24 -05:00
|
|
|
sed -i 's/localhost/postgres/g' config/database.yml
|
|
|
|
sed -i 's/username: git/username: postgres/g' config/database.yml
|
2018-12-13 15:32:42 -05:00
|
|
|
|
2019-11-19 10:06:24 -05:00
|
|
|
if [ -f config/database_geo.yml ]; then
|
|
|
|
sed -i 's/localhost/postgres/g' config/database_geo.yml
|
|
|
|
sed -i 's/username: git/username: postgres/g' config/database_geo.yml
|
2015-06-17 06:23:43 -04:00
|
|
|
fi
|
2017-03-22 10:31:07 -04:00
|
|
|
|
2020-04-30 08:09:45 -04:00
|
|
|
cp config/cable.yml.example config/cable.yml
|
|
|
|
sed -i 's|url:.*$|url: redis://redis:6379|g' config/cable.yml
|
|
|
|
|
2017-07-10 23:35:47 -04:00
|
|
|
cp config/resque.yml.example config/resque.yml
|
2019-06-25 08:11:06 -04:00
|
|
|
sed -i 's|url:.*$|url: redis://redis:6379|g' config/resque.yml
|
2017-07-10 23:35:47 -04:00
|
|
|
|
|
|
|
cp config/redis.cache.yml.example config/redis.cache.yml
|
2019-06-25 08:11:06 -04:00
|
|
|
sed -i 's|url:.*$|url: redis://redis:6379/10|g' config/redis.cache.yml
|
2017-07-10 23:35:47 -04:00
|
|
|
|
|
|
|
cp config/redis.queues.yml.example config/redis.queues.yml
|
2019-06-25 08:11:06 -04:00
|
|
|
sed -i 's|url:.*$|url: redis://redis:6379/11|g' config/redis.queues.yml
|
2017-07-10 23:35:47 -04:00
|
|
|
|
|
|
|
cp config/redis.shared_state.yml.example config/redis.shared_state.yml
|
2019-06-25 08:11:06 -04:00
|
|
|
sed -i 's|url:.*$|url: redis://redis:6379/12|g' config/redis.shared_state.yml
|
2017-07-10 23:35:47 -04:00
|
|
|
|
2017-03-22 10:31:07 -04:00
|
|
|
if [ "$SETUP_DB" != "false" ]; then
|
2018-12-13 15:32:42 -05:00
|
|
|
setup_db
|
2019-11-19 10:06:24 -05:00
|
|
|
elif getent hosts postgres; then
|
2018-12-13 15:32:42 -05:00
|
|
|
setup_db_user_only
|
2017-03-22 10:31:07 -04:00
|
|
|
fi
|