Skip to content
Snippets Groups Projects
Commit b09a329f authored by Kamil Trzcińśki's avatar Kamil Trzcińśki
Browse files

Use ruby:2.1 and ruby:2.2 images

parent 0b4981e7
No related branches found
No related tags found
No related merge requests found
image: registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.1
image: "ruby:2.1"
 
services:
- mysql:latest
Loading
Loading
@@ -116,7 +116,7 @@ spinach 9 10: *knapsack
 
.knapsack-ruby22: &knapsack-ruby22
<<: *knapsack
image: registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.2
image: "ruby:2.2"
only:
- master
cache:
Loading
Loading
Loading
Loading
@@ -12,6 +12,20 @@ retry() {
}
 
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
sed -i 's/password:.*/password:/g' config/database.yml
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment