mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
f4ce5fe9ee
* Run integration tests in default * Add retry in CI * Convert integration test to ruby script for Windows * Attempt to add finicky tests back * Possible kinda janky solution * Only run master branch on travis (syntax fix) * Don't do integration tests on windows Can't be bothered to make those tests crossplatform * Remove join timeouts on read, let the main test timeout do it * Assert once * Sigh.
30 lines
552 B
YAML
30 lines
552 B
YAML
dist: trusty
|
|
sudo: false
|
|
group: beta
|
|
language: ruby
|
|
cache: bundler
|
|
before_install:
|
|
# bundler installation needed for jruby-head
|
|
# https://github.com/travis-ci/travis-ci/issues/5861
|
|
- gem install bundler -v 1.11.2
|
|
script: "TESTOPTS=-v bundle exec rake"
|
|
branches:
|
|
only:
|
|
- "master"
|
|
rvm:
|
|
- 2.2.7
|
|
- 2.3.4
|
|
- 2.4.1
|
|
- ruby-head
|
|
- jruby-9.1.12.0
|
|
- jruby-head
|
|
- rbx-3
|
|
matrix:
|
|
include:
|
|
- rvm: 2.1
|
|
gemfile: gemfiles/2.1-Gemfile
|
|
fast_finish: true
|
|
allow_failures:
|
|
- rvm: jruby-head
|
|
- rvm: rbx-3
|
|
- rvm: ruby-head
|