aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorhiren mistry <hiren.mistry@chai-monsters.com>2015-09-19 15:00:12 -0700
committerhiren mistry <hiren.mistry@chai-monsters.com>2015-09-19 15:10:14 -0700
commit3df305edd0620c3da1bf1790d7a921c187bc598b (patch)
treecb0d48d93ff06007046c43bc87fa8321e71b8b1b /.travis.yml
parent44e5ebf688f062bb38501c8de817e0d484999001 (diff)
downloadrails-3df305edd0620c3da1bf1790d7a921c187bc598b.tar.gz
rails-3df305edd0620c3da1bf1790d7a921c187bc598b.tar.bz2
rails-3df305edd0620c3da1bf1790d7a921c187bc598b.zip
Added beanstalkd to Travis so ActiveJob integration tests for beanstalkd can run
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index c648bd2ca7..5d4a9e9c67 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -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