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
Jérome Perrin
gitlab-ce
Commits
3da55e37
Commit
3da55e37
authored
Mar 09, 2016
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Retry bundler and apt-get
parent
fdfcc1ac
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
13 deletions
+15
-13
.gitlab-ci.yml
.gitlab-ci.yml
+2
-2
scripts/prepare_build.sh
scripts/prepare_build.sh
+13
-11
No files found.
.gitlab-ci.yml
View file @
3da55e37
...
...
@@ -19,11 +19,11 @@ before_script:
-
source ./scripts/prepare_build.sh
-
ruby -v
-
which ruby
-
gem install bundler --no-ri --no-rdoc
-
retry
gem install bundler --no-ri --no-rdoc
-
cp config/gitlab.yml.example config/gitlab.yml
-
touch log/application.log
-
touch log/test.log
-
bundle install --without postgres production --jobs $(nproc) "${FLAGS[@]}"
-
retry
bundle install --without postgres production --jobs $(nproc) "${FLAGS[@]}"
-
RAILS_ENV=test bundle exec rake db:drop db:create db:schema:load db:migrate
stages
:
...
...
scripts/prepare_build.sh
View file @
3da55e37
#!/bin/bash
retry
()
{
for
i
in
$(
seq
1 3
)
;
do
if
eval
"
$@
"
;
then
return
0
fi
sleep
3s
echo
"Retrying..."
done
return
1
}
if
[
-f
/.dockerinit
]
;
then
mkdir
-p
vendor
...
...
@@ -12,17 +23,8 @@ if [ -f /.dockerinit ]; then
popd
# Try to install packages
for
i
in
$(
seq
1 3
)
;
do
apt-get update
-yqqq
||
true
if
apt-get
-o
dir
::cache::archives
=
"vendor/apt"
install
-y
-qq
--force-yes
\
libicu-dev libkrb5-dev cmake nodejs postgresql-client mysql-client unzip
;
then
break
fi
sleep
3s
echo
"Retrying package installation..."
done
retry
'apt-get update -yqqq; apt-get -o dir::cache::archives="vendor/apt" install -y -qq --force-yes \
libicu-dev libkrb5-dev cmake nodejs postgresql-client mysql-client unzip'
cp
config/database.yml.mysql config/database.yml
sed
-i
's/username:.*/username: root/g'
config/database.yml
...
...
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