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

66 lines
1.6 KiB
YAML
Raw Normal View History

2019-02-20 14:44:14 -05:00
dist: xenial
2012-06-22 18:14:53 -04:00
language: ruby
2015-05-26 06:11:47 -04:00
cache: bundler
2018-12-19 23:35:27 -05:00
2016-11-20 11:20:20 -05:00
before_install:
2019-02-20 14:44:14 -05:00
# rubygems 2.7.8 and greater include bundler, leave 2.6.0 untouched
2018-12-19 23:35:27 -05:00
- |
r_eng="$(ruby -e 'STDOUT.write RUBY_ENGINE')";
2018-12-19 23:35:27 -05:00
rv="$(ruby -e 'STDOUT.write RUBY_VERSION')";
if [ "$r_eng" == "ruby" ]; then
if [ "$rv" \< "2.3" ]; then gem update --system 2.7.9 --no-document
elif [ "$rv" \< "2.6" ]; then gem update --system --no-document --conservative
fi
2018-12-19 23:35:27 -05:00
fi
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
brew update
brew install ragel
fi
2018-12-19 23:35:27 -05:00
- ruby -v && gem --version && bundle version
2019-02-20 14:44:14 -05:00
before_script:
- bundle exec rake compile
script:
- bundle exec rake
2011-11-22 19:28:57 -05:00
rvm:
- 2.2.10
- 2.3.8
- 2.4.6
- 2.5.5
- 2.6.3
- ruby-head
matrix:
fast_finish: true
include:
- rvm: 2.2
dist: trusty
env: NOTES="Trusty OpenSSL 1.0.1"
- rvm: ruby-head
env: RUBYOPT="--jit"
- rvm: 2.4.6
os: osx
osx_image: xcode10.2
- rvm: 2.5.5
os: osx
osx_image: xcode10.2
- rvm: 2.6.3
os: osx
osx_image: xcode10.2
- rvm: jruby-9.2.7.0
env: JRUBY_OPTS="--debug" JAVA_OPTS="--add-opens java.base/sun.nio.ch=org.jruby.dist --add-opens java.base/java.io=org.jruby.dist --add-opens java.base/java.util.zip=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.security.cert=ALL-UNNAMED --add-opens java.base/java.security=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED"
- rvm: jruby-head
2019-02-20 14:44:14 -05:00
allow_failures:
- rvm: ruby-head
2018-05-10 08:02:50 -04:00
- rvm: ruby-head
env: RUBYOPT="--jit"
- rvm: jruby-9.2.7.0
- rvm: jruby-head
env:
global:
- TESTOPTS="-v"