Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
a183aa3c
Commit
a183aa3c
authored
Dec 13, 2018
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CE-EE parity for prepare_build script
This removes EE-only directives in favor of file existence checks.
parent
07e079e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
6 deletions
+18
-6
scripts/prepare_build.sh
scripts/prepare_build.sh
+18
-6
No files found.
scripts/prepare_build.sh
View file @
a183aa3c
...
@@ -6,7 +6,7 @@ export USE_BUNDLE_INSTALL=${USE_BUNDLE_INSTALL:-true}
...
@@ -6,7 +6,7 @@ export USE_BUNDLE_INSTALL=${USE_BUNDLE_INSTALL:-true}
export
BUNDLE_INSTALL_FLAGS
=
"--without=production --jobs=
$(
nproc
)
--path=vendor --retry=3 --quiet"
export
BUNDLE_INSTALL_FLAGS
=
"--without=production --jobs=
$(
nproc
)
--path=vendor --retry=3 --quiet"
if
[
"
$USE_BUNDLE_INSTALL
"
!=
"false"
]
;
then
if
[
"
$USE_BUNDLE_INSTALL
"
!=
"false"
]
;
then
bundle
install
--clean
$BUNDLE_INSTALL_FLAGS
&&
bundle check
bundle
install
--clean
$BUNDLE_INSTALL_FLAGS
&&
bundle check
fi
fi
# Only install knapsack after bundle install! Otherwise oddly some native
# Only install knapsack after bundle install! Otherwise oddly some native
...
@@ -23,18 +23,30 @@ export GITLAB_DATABASE=$(echo $CI_JOB_NAME | cut -f1 -d' ' | cut -f2 -d-)
...
@@ -23,18 +23,30 @@ export GITLAB_DATABASE=$(echo $CI_JOB_NAME | cut -f1 -d' ' | cut -f2 -d-)
# This would make the default database postgresql, and we could also use
# This would make the default database postgresql, and we could also use
# pg to mean postgresql.
# pg to mean postgresql.
if
[
"
$GITLAB_DATABASE
"
!=
'mysql'
]
;
then
if
[
"
$GITLAB_DATABASE
"
!=
'mysql'
]
;
then
export
GITLAB_DATABASE
=
'postgresql'
export
GITLAB_DATABASE
=
'postgresql'
fi
fi
cp
config/database.yml.
$GITLAB_DATABASE
config/database.yml
cp
config/database.yml.
$GITLAB_DATABASE
config/database.yml
if
[
-f
config/database_geo.yml.
$GITLAB_DATABASE
]
;
then
cp
config/database_geo.yml.
$GITLAB_DATABASE
config/database_geo.yml
fi
# Set user to a non-superuser to ensure we test permissions
# Set user to a non-superuser to ensure we test permissions
sed
-i
's/username: root/username: gitlab/g'
config/database.yml
sed
-i
's/username: root/username: gitlab/g'
config/database.yml
if
[
"
$GITLAB_DATABASE
"
=
'postgresql'
]
;
then
if
[
"
$GITLAB_DATABASE
"
=
'postgresql'
]
;
then
sed
-i
's/localhost/postgres/g'
config/database.yml
sed
-i
's/localhost/postgres/g'
config/database.yml
if
[
-f
config/database_geo.yml
]
;
then
sed
-i
's/localhost/postgres/g'
config/database_geo.yml
fi
else
# Assume it's mysql
else
# Assume it's mysql
sed
-i
's/localhost/mysql/g'
config/database.yml
sed
-i
's/localhost/mysql/g'
config/database.yml
if
[
-f
config/database_geo.yml
]
;
then
sed
-i
's/localhost/mysql/g'
config/database_geo.yml
fi
fi
fi
cp
config/resque.yml.example config/resque.yml
cp
config/resque.yml.example config/resque.yml
...
@@ -50,7 +62,7 @@ cp config/redis.shared_state.yml.example config/redis.shared_state.yml
...
@@ -50,7 +62,7 @@ cp config/redis.shared_state.yml.example config/redis.shared_state.yml
sed
-i
's/localhost/redis/g'
config/redis.shared_state.yml
sed
-i
's/localhost/redis/g'
config/redis.shared_state.yml
if
[
"
$SETUP_DB
"
!=
"false"
]
;
then
if
[
"
$SETUP_DB
"
!=
"false"
]
;
then
setup_db
setup_db
elif
getent hosts postgres
||
getent hosts mysql
;
then
elif
getent hosts postgres
||
getent hosts mysql
;
then
setup_db_user_only
setup_db_user_only
fi
fi
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment