mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60523 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			460 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			460 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
sudo: false
 | 
						|
language: ruby
 | 
						|
before_script:
 | 
						|
  # https://github.com/travis-ci/travis-ci/issues/8408
 | 
						|
  - unset _JAVA_OPTIONS
 | 
						|
script:
 | 
						|
  - bundle exec rspec
 | 
						|
matrix:
 | 
						|
  include:
 | 
						|
  - rvm: 2.2.8
 | 
						|
  - rvm: 2.3.5
 | 
						|
  - rvm: 2.4.2
 | 
						|
  - rvm: ruby-head
 | 
						|
  - jdk: oraclejdk8
 | 
						|
    install:
 | 
						|
      - curl -L https://github.com/graalvm/truffleruby/releases/download/vm-enterprise-0.28/truffleruby-testing-0.28.tar.gz | tar xz
 | 
						|
      - source truffleruby/setup_env
 | 
						|
      - bundle install
 |