1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Added beanstalkd to Travis so ActiveJob integration tests for beanstalkd can run

This commit is contained in:
hiren mistry 2015-09-19 15:00:12 -07:00
parent 44e5ebf688
commit 3df305edd0

View file

@ -4,6 +4,11 @@ script: 'ci/travis.rb'
before_install:
- gem install bundler
- "rm ${BUNDLE_GEMFILE}.lock"
- curl -L https://github.com/kr/beanstalkd/archive/v1.10.tar.gz | tar xz -C /tmp
- cd /tmp/beanstalkd-1.10/
- make
- ./beanstalkd &
- cd $TRAVIS_BUILD_DIR
before_script:
- bundle update
cache: bundler