File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 7
7
uses : ruby/actions/.github/workflows/ruby_versions.yml@master
8
8
with :
9
9
engine : cruby
10
+ versions : ' ["truffleruby-head"]'
10
11
min_version : 2.7
11
12
12
13
build :
24
25
exclude :
25
26
- ruby : head
26
27
os : windows-latest
28
+ - ruby : truffleruby-head
29
+ os : windows-latest
27
30
runs-on : ${{ matrix.os }}
28
31
steps :
29
32
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -506,6 +506,7 @@ def test_set_dictionary
506
506
end
507
507
508
508
def test_multithread_deflate
509
+ pend 'hangs' if RUBY_ENGINE == 'truffleruby'
509
510
zd = Zlib ::Deflate . new
510
511
511
512
s = "x" * 10000
@@ -522,6 +523,7 @@ def test_multithread_deflate
522
523
end
523
524
524
525
def test_multithread_inflate
526
+ pend 'hangs' if RUBY_ENGINE == 'truffleruby'
525
527
zi = Zlib ::Inflate . new
526
528
527
529
s = Zlib . deflate ( "x" * 10000 )
@@ -792,7 +794,7 @@ def test_path
792
794
}
793
795
end
794
796
795
- if defined? File ::TMPFILE
797
+ if defined? ( File ::TMPFILE ) and RUBY_ENGINE != 'truffleruby'
796
798
def test_path_tmpfile
797
799
sio = StringIO . new ( "" . dup , 'w' )
798
800
gz = Zlib ::GzipWriter . new ( sio )
You can’t perform that action at this time.
0 commit comments