1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Travis: Use default script step; latest versions in matrix (#1414)

* Travis: Use default script step

  - move TESTOPTS=-v to a global env instead

* Travis: ruby 2.2.8, 2.3.5, 2.4.2
This commit is contained in:
Olle Jonsson 2017-09-19 02:42:06 +02:00 committed by Nate Berkopec
parent c50cea2fd4
commit 176be58740

View file

@ -7,14 +7,13 @@ before_install:
# bundler installation needed for jruby-head # bundler installation needed for jruby-head
# https://github.com/travis-ci/travis-ci/issues/5861 # https://github.com/travis-ci/travis-ci/issues/5861
- gem install bundler - gem install bundler
script: "TESTOPTS=-v bundle exec rake"
branches: branches:
only: only:
- "master" - "master"
rvm: rvm:
- 2.2.7 - 2.2.8
- 2.3.4 - 2.3.5
- 2.4.1 - 2.4.2
- ruby-head - ruby-head
- jruby-9.1.13.0 - jruby-9.1.13.0
- jruby-head - jruby-head
@ -28,3 +27,6 @@ matrix:
- rvm: jruby-head - rvm: jruby-head
- rvm: rbx-3 - rvm: rbx-3
- rvm: ruby-head - rvm: ruby-head
env:
global:
- TESTOPTS="-v"