debian-mirror-gitlab/scripts/prepare_build.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
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}
2017-09-10 17:25:29 +05:30
if [ "$USE_BUNDLE_INSTALL" != "false" ]; then
2021-06-08 01:23:25 +05:30
bundle_install_script
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
2021-11-11 11:23:49 +05:30
if [ "$DECOMPOSED_DB" == "true" ]; then
echo "Using decomposed database config (config/database.yml.decomposed-postgresql)"
cp config/database.yml.decomposed-postgresql config/database.yml
else
2023-05-27 22:25:52 +05:30
echo "Using decomposed database config (config/database.yml.postgresql)"
2021-11-11 11:23:49 +05:30
cp config/database.yml.postgresql config/database.yml
2023-05-27 22:25:52 +05:30
2023-07-09 08:55:56 +05:30
if [ "$CI_CONNECTION_DB" != "true" ]; then
echo "Disabling ci connection in config/database.yml"
sed -i "/ci:$/, /geo:$/ {s|^|#|;s|# geo:| geo:|;}" config/database.yml
2023-05-27 22:25:52 +05:30
fi
2021-11-11 11:23:49 +05:30
fi
2017-08-17 22:00:37 +05:30
2023-04-23 21:23:45 +05:30
# Set up Geo database if the job name matches `rspec-ee` or `geo`.
# Since Geo is an EE feature, we shouldn't set it up for non-EE tests.
if [[ "${CI_JOB_NAME}" =~ "rspec-ee" ]] || [[ "${CI_JOB_NAME}" =~ "geo" ]]; then
echoinfo "Geo DB will be set up."
else
echoinfo "Geo DB won't be set up."
2022-07-23 23:45:48 +05:30
sed -i '/geo:/,/^$/d' config/database.yml
2019-02-15 15:39:39 +05:30
fi
2023-07-09 08:55:56 +05:30
# Set up Embedding database if the job name matches `rspec-ee`
# Since Embedding is an EE feature, we shouldn't set it up for non-EE tests.
if [[ "${CI_JOB_NAME}" =~ "rspec-ee" ]]; then
echoinfo "Embedding DB will be set up."
else
echoinfo "Embedding DB won't be set up."
sed -i '/embedding:/,/^$/d' config/database.yml
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-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
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