use built in travis caching

also run bundle update to make sure the cache is not too old
This commit is contained in:
Josh Kalderimis 2014-11-08 16:12:03 +13:00
parent ae7f10b922
commit c7603f3ebf
1 changed files with 15 additions and 15 deletions

View File

@ -1,16 +1,23 @@
language: ruby language: ruby
cache: bundler cache: bundler
sudo: false sudo: false
install:
- script/rebund download
- travis_retry bundle install --path vendor/bundle -j8
rvm: rvm:
- 2.1 - 2.1
- 2.0 - 2.0
- 1.9.3 - 1.9.3
env:
matrix:
- TEST_SUITE=test
- TEST_SUITE=cucumber
before_script: bundle update
script: script/cibuild script: script/cibuild
after_script:
- script/rebund upload
notifications: notifications:
irc: irc:
on_success: change on_success: change
@ -22,10 +29,3 @@ notifications:
email: email:
on_success: never on_success: never
on_failure: never on_failure: never
env:
global:
- secure: bt5nglPTdsc0N5fB1dOJz2WbM81dGpDuVD8PnhEsxgUfoo6xavhU4+pNrUADlSUqQ1aJrdU+MKW4x+JZ2ZnJS8vOpNzRymuMZSbFaljK4pgFGiKFgBdMKxVikvoYcxKCjLAl7NJZ11W6hUw+JtJScClDZwrJJAQB6I7Isp/LsdM=
- secure: Ym8nx7nbfGYGo47my92M+deJykaiMkdZdb615EO51liv/xy/0aQ919Jpfieugc9d3zVnm+zFGPbpv4YzRpsik6OlVBNa4lP+BnQ27ptf5YcLWD8Hksi7845WFLecXMoaTCoYer/TvYZsIWJb2nSDMH9qbfZhnd1YZKuvUpK0rEU=
matrix:
- TEST_SUITE=test
- TEST_SUITE=cucumber