mirror of
https://github.com/rubyjs/mini_racer
synced 2023-03-27 23:21:28 -04:00

Previously we relied on GC to release pipe fds. This worked on earlier versions of Ruby but on 2.7 it will start breaking. We now release the fds early to avoid the issues.
24 lines
369 B
YAML
24 lines
369 B
YAML
language: ruby
|
|
rvm:
|
|
- 2.3
|
|
- 2.4
|
|
- 2.5
|
|
- 2.6
|
|
- ruby-head
|
|
matrix:
|
|
include:
|
|
- rvm: 2.5.1
|
|
os: osx
|
|
osx_image: xcode9.4
|
|
- rvm: 2.4.0
|
|
os: osx
|
|
osx_image: xcode8.3
|
|
- rvm: 2.4.0
|
|
os: osx
|
|
osx_image: xcode7.3
|
|
dist: trusty
|
|
sudo: true
|
|
before_install:
|
|
- gem update --system
|
|
- gem install bundler -v 1.16.2
|
|
cache: bundler
|