Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2018-05-11 18:06:08 +0300
committerLin Jen-Shin <godfat@godfat.org>2018-05-16 16:52:08 +0300
commitcdcde75bb782951b27ab9db0d54a71db7c94d7cb (patch)
tree014c894a52bc263e485700bb1ba129db5c2dc8dc /scripts
parent73289a8361aa6bb2cbd26873ccabe512fca6589b (diff)
Only setup db in the first checkout!
Diffstat (limited to 'scripts')
-rw-r--r--scripts/prepare_build.sh6
-rw-r--r--scripts/utils.sh8
2 files changed, 9 insertions, 5 deletions
diff --git a/scripts/prepare_build.sh b/scripts/prepare_build.sh
index 206d62dbc78..01cb01ed812 100644
--- a/scripts/prepare_build.sh
+++ b/scripts/prepare_build.sh
@@ -60,9 +60,5 @@ if [ "$CREATE_DB_USER" != "false" ]; then
fi
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
+ setup_db
fi
diff --git a/scripts/utils.sh b/scripts/utils.sh
index 6faa701f0ce..08c33f3f67e 100644
--- a/scripts/utils.sh
+++ b/scripts/utils.sh
@@ -12,3 +12,11 @@ retry() {
done
return 1
}
+
+setup_db() {
+ bundle exec rake db:drop db:create db:schema:load db:migrate
+
+ if [ "$GITLAB_DATABASE" = "mysql" ]; then
+ bundle exec rake add_limits_mysql
+ fi
+}