Merge branch 'svbergerem-fix-bundler-require' into next-minor

This commit is contained in:
Dennis Schubert 2016-09-20 01:47:12 +02:00
commit f6e5fa1d13
No known key found for this signature in database
GPG key ID: 5A0304BEA7966D7E
4 changed files with 11 additions and 3 deletions

View file

@ -23,7 +23,7 @@ branches:
- 'develop' - 'develop'
before_install: before_install:
- gem install bundler --version 1.12.5 - gem install bundler
- mkdir travis-phantomjs - mkdir travis-phantomjs
- wget http://cifiles.diasporafoundation.org/phantomjs-2.1.1-linux-x86_64.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2 - wget http://cifiles.diasporafoundation.org/phantomjs-2.1.1-linux-x86_64.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2
- tar -xvf $PWD/travis-phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2 -C $PWD/travis-phantomjs - tar -xvf $PWD/travis-phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2 -C $PWD/travis-phantomjs

View file

@ -1,3 +1,11 @@
# 0.7.0.0
## Refactor
## Bug fixes
## Features
# 0.6.1.0 # 0.6.1.0
## Refactor ## Refactor

View file

@ -4,7 +4,7 @@
defaults: defaults:
version: version:
number: "0.6.0.99" # Do not touch unless doing a release, do not backport the version number that's in master number: "0.6.99.0" # Do not touch unless doing a release, do not backport the version number that's in master
heroku: false heroku: false
environment: environment:
url: "http://localhost:3000/" url: "http://localhost:3000/"

View file

@ -8,6 +8,6 @@ if [ "$DB" = "mysql" ]; then
sed -i 's/*common/*mysql/' config/database.yml sed -i 's/*common/*mysql/' config/database.yml
fi fi
command="bundle _1.12.5_ exec rake --trace ci:travis:${BUILD_TYPE}" command="bundle exec rake --trace ci:travis:${BUILD_TYPE}"
exec xvfb-run --auto-servernum --server-num=1 --server-args="-screen 0 1280x1024x8" $command exec xvfb-run --auto-servernum --server-num=1 --server-args="-screen 0 1280x1024x8" $command