debian-mirror-gitlab/scripts/prepare_build.sh

58 lines
2.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}
export USE_BUNDLE_INSTALL=${USE_BUNDLE_INSTALL:-true}
2021-01-03 14:25:43 +05:30
export BUNDLE_INSTALL_FLAGS=${BUNDLE_INSTALL_FLAGS:-"--without=production development --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
2019-09-04 21:01:54 +05:30
bundle --version
2021-03-11 19:13:27 +05:30
bundle config set clean 'true'
run_timed_command "bundle install ${BUNDLE_INSTALL_FLAGS}"
2020-05-24 23:13:21 +05:30
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-28 23:09:34 +05:30
run_timed_command "bundle pristine pg"
2017-09-10 17:25:29 +05:30
fi
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
2020-01-01 13:55:28 +05:30
cp config/database.yml.postgresql config/database.yml
2017-08-17 22:00:37 +05:30
2020-01-01 13:55:28 +05:30
if [ -f config/database_geo.yml.postgresql ]; then
cp config/database_geo.yml.postgresql config/database_geo.yml
2019-02-15 15:39:39 +05:30
fi
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
2020-01-01 13:55:28 +05:30
sed -i 's/localhost/postgres/g' config/database.yml
sed -i 's/username: git/username: postgres/g' config/database.yml
2019-02-15 15:39:39 +05:30
2020-01-01 13:55:28 +05:30
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
2017-08-17 22:00:37 +05:30
fi
2020-05-24 23:13:21 +05:30
cp config/cable.yml.example config/cable.yml
sed -i 's|url:.*$|url: redis://redis:6379|g' config/cable.yml
2017-08-17 22:00:37 +05:30
cp config/resque.yml.example config/resque.yml
2019-09-30 21:07:59 +05:30
sed -i 's|url:.*$|url: redis://redis:6379|g' config/resque.yml
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
cp config/redis.cache.yml.example config/redis.cache.yml
2019-09-30 21:07:59 +05:30
sed -i 's|url:.*$|url: redis://redis:6379/10|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
2019-09-30 21:07:59 +05:30
sed -i 's|url:.*$|url: redis://redis:6379/11|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
2019-09-30 21:07:59 +05:30
sed -i 's|url:.*$|url: redis://redis:6379/12|g' config/redis.shared_state.yml
2017-08-17 22:00:37 +05:30
if [ "$SETUP_DB" != "false" ]; then
2019-02-15 15:39:39 +05:30
setup_db
2020-01-01 13:55:28 +05:30
elif getent hosts postgres; then
2019-02-15 15:39:39 +05:30
setup_db_user_only
2015-09-11 14:41:01 +05:30
fi