31 lines
		
	
	
		
			984 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			984 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| language: ruby
 | |
| cache:
 | |
|   bundler: true
 | |
| before_install:
 | |
|   - gem install bundler
 | |
| matrix:
 | |
|   fast_finish: true
 | |
|   include:
 | |
|     - rvm: 2.2.7
 | |
|       install: true # This skips 'bundle install'
 | |
|       script: gem build github_changelog_generator && gem install *.gem
 | |
|       after_success: true # This skips 'codeclimate-test-reporter'
 | |
|     - rvm: 2.2.7
 | |
|       install: true # This skips 'bundle install'
 | |
|       script: gem build github_changelog_generator && bundle install
 | |
|       gemfile: spec/install-gem-in-bundler.gemfile
 | |
|       after_success: true # This skips 'codeclimate-test-reporter'
 | |
|     - rvm: 2.3.4
 | |
|     - rvm: 2.4.1
 | |
|     - rvm: jruby-9.1.15.0
 | |
|       jdk: oraclejdk8
 | |
|       env:
 | |
|         - JRUBY_OPTS=--debug
 | |
| 
 | |
| addons:
 | |
|   code_climate:
 | |
|     repo_token:
 | |
|       secure: iMpV5IAvH+/EVGZrpWnt2BnmNFzSbsRcIumsr4ZyLC8N5nrCSXyjCSy0g48btL3Sj0bSgK9hcrJsmrFd2bkqFleyAcPAzNyUQzBuIRZx47O8yFmbZ+Pj+l3+KOlmcbzJNHfDfxkxuWTmTAcSDfsiyApin721T/ey3SUuwKpZNUc=
 | |
| after_success:
 | |
|   - bundle exec codeclimate-test-reporter
 | 
