mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 18:08:42 -05:00
This is necessary until the bundler + Jruby issues are resolved: - https://github.com/bundler/bundler/issues/4975 - https://github.com/bundler/bundler/issues/4984
20 lines
477 B
YAML
20 lines
477 B
YAML
cache: bundler
|
|
sudo: false
|
|
language: ruby
|
|
services:
|
|
- redis-server
|
|
rvm:
|
|
- 1.9.3
|
|
- 2.1.1
|
|
- 2.2.1
|
|
- 2.2.2
|
|
- jruby-1.7.8
|
|
# This below is a temporary shim to bypass these bundler+jruby bugs:
|
|
#
|
|
# https://github.com/bundler/bundler/issues/4975
|
|
# https://github.com/bundler/bundler/issues/4984
|
|
install:
|
|
- gem install bundler --version 1.12.5
|
|
- bundle _1.12.5_ install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
|
|
script:
|
|
- bundle _1.12.5_ exec rake
|