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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
23bc10ec
Commit
23bc10ec
authored
Apr 26, 2016
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update scripts/prepare_build.sh from master
parent
7eda355e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
8 deletions
+28
-8
.gitlab-ci.yml
.gitlab-ci.yml
+1
-1
scripts/prepare_build.sh
scripts/prepare_build.sh
+27
-7
No files found.
.gitlab-ci.yml
View file @
23bc10ec
...
...
@@ -13,7 +13,7 @@ variables:
MYSQL_ALLOW_EMPTY_PASSWORD
:
"
1"
before_script
:
-
./scripts/prepare_build.sh
-
source
./scripts/prepare_build.sh
-
ruby -v
-
which ruby
-
gem install bundler --no-ri --no-rdoc
...
...
scripts/prepare_build.sh
View file @
23bc10ec
#!/bin/bash
if
[
-f
/.dockerinit
]
;
then
wget
-q
http://ftp.de.debian.org/debian/pool/main/p/phantomjs/phantomjs_1.9.0-1+b1_amd64.deb
dpkg
-i
phantomjs_1.9.0-1+b1_amd64.deb
apt-get update
-qq
apt-get
install
-y
-qq
libicu-dev libkrb5-dev cmake nodejs postgresql-client mysql-client
retry
()
{
for
i
in
$(
seq
1 3
)
;
do
if
eval
"
$@
"
;
then
return
0
fi
sleep
3s
echo
"Retrying..."
done
return
1
}
if
[
-f
/.dockerenv
]
||
[
-f
./dockerinit
]
;
then
mkdir
-p
vendor
# Install phantomjs package
pushd
vendor
if
[
!
-e
phantomjs_1.9.8-0jessie_amd64.deb
]
;
then
wget
-q
https://gitlab.com/axil/phantomjs-debian/raw/master/phantomjs_1.9.8-0jessie_amd64.deb
fi
dpkg
-i
phantomjs_1.9.8-0jessie_amd64.deb
popd
# Try to install packages
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
...
...
@@ -13,8 +33,8 @@ if [ -f /.dockerinit ]; then
cp
config/resque.yml.example config/resque.yml
sed
-i
's/localhost/redis/g'
config/resque.yml
FLAGS
=(
--deployment
--path
/cache
)
export
FLAGS
export
FLAGS
=(
--path
vendor
--retry
3
)
else
export
PATH
=
$HOME
/bin:/usr/local/bin:/usr/bin:/bin
cp
config/database.yml.mysql 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