Skip to content

Commit 2dad177

Browse files
authored
Merge pull request #104 from sfgeorge/patch-1
[CI] Add CI builds against C-Ruby 2.4, 2.5 and 2.6
2 parents f778cdf + d29188f commit 2dad177

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
dist: xenial
12
language: ruby
23
rvm:
3-
- 2.3.0
4+
- 2.3.8
5+
- 2.4.5
6+
- 2.5.3
7+
- 2.6.3
48
- jruby-19mode
59
- rbx-19mode
610
- ruby-head
@@ -11,6 +15,6 @@ matrix:
1115
- rvm: ruby-head
1216
notifications:
1317
irc: "irc.freenode.org#adhearsion"
14-
sudo: true
1518
before_install:
19+
- rvm list
1620
- sudo apt-get install libpcap-dev -y

spec/sippy_cup/runner_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ def active_thread_count
534534
end
535535

536536
it "proxies stderr to the terminal" do
537-
expect(capture(:stderr) { subject.run }.strip).to eq(error_string)
537+
expect(capture(:stderr) { subject.run }.strip).to include(error_string)
538538
end
539539

540540
it "does not leak threads" do

0 commit comments

Comments
 (0)