Skip to content

Commit f5a809f

Browse files
committed
Add a truffle-ruby build
Signed-off-by: James Couball <jcouball@yahoo.com>
1 parent 1d39814 commit f5a809f

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,11 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
ruby: ['2.7', '3.0', '3.1', '3.2', 'head']
17+
ruby: ['2.7', '3.0', '3.1', '3.2', 'head', 'jruby-head', 'truffleruby-head']
1818
operating-system: [ubuntu-latest]
1919
include:
2020
- ruby: 3.1
2121
operating-system: windows-latest
22-
- ruby: jruby-head
23-
operating-system: ubuntu-latest
2422
# - ruby: jruby-head
2523
# operating-system: windows-latest
2624

.tool-versions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby 3.0.5

spec/process_executer_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
subject { ProcessExecuter.spawn(*command, **options) }
66

77
context 'for a command that does not time out' do
8-
let(:command) { ['exit 1'] }
8+
let(:command) { %w[false] }
99
let(:options) { {} }
1010
it { is_expected.to be_a(Process::Status) }
1111
it { is_expected.to have_attributes(exitstatus: 1) }

0 commit comments

Comments
 (0)