File tree 4 files changed +7
-5
lines changed
4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 26
26
- " 3.2"
27
27
- " jruby-9.3"
28
28
- " jruby-9.4"
29
- - " truffleruby-21.0.0 "
29
+ - " truffleruby-22 "
30
30
steps :
31
31
- uses : actions/checkout@v2
32
32
- name : Run tests with Ruby ${{ matrix.ruby }}
Original file line number Diff line number Diff line change 3
3
* Add support to use SNI #406
4
4
* Drop Ruby 2.5 and JRuby 9.2 from CI tests
5
5
* Bump rubocop to 1.48.1
6
+ * Update CI for TruffleRuby 22
6
7
7
8
=== Net::LDAP 0.17.1
8
9
* Fixed shebang of bash #385
Original file line number Diff line number Diff line change @@ -94,8 +94,9 @@ services:
94
94
- .:/code
95
95
working_dir : /code
96
96
97
- ci-truffleruby-21.0.0 :
98
- image : flavorjones/truffleruby:21.0.0
97
+ # https://github.com/flavorjones/truffleruby/pkgs/container/truffleruby
98
+ ci-truffleruby-22 :
99
+ image : ghcr.io/flavorjones/truffleruby:22.3.1
99
100
entrypoint : /code/ci-run.sh
100
101
environment :
101
102
INTEGRATION : openldap
Original file line number Diff line number Diff line change @@ -31,14 +31,14 @@ def setup
31
31
32
32
def test_transmit_strings
33
33
omit_if RUBY_PLATFORM == "java" , "JRuby throws an error without a real socket"
34
- omit_if RUBY_VERSION >= "3.1" , "Ruby complains about connection not being open"
34
+ omit_if ( RUBY_VERSION >= "3.1" || RUBY_ENGINE == "truffleruby" ) , "Ruby complains about connection not being open"
35
35
36
36
assert_equal "foo" , transmit ( "foo" )
37
37
end
38
38
39
39
def test_transmit_ber_encoded_numbers
40
40
omit_if RUBY_PLATFORM == "java" , "JRuby throws an error without a real socket"
41
- omit_if RUBY_VERSION >= "3.1" , "Ruby complains about connection not being open"
41
+ omit_if ( RUBY_VERSION >= "3.1" || RUBY_ENGINE == "truffleruby" ) , "Ruby complains about connection not being open"
42
42
43
43
@to . write 1234 . to_ber
44
44
assert_equal 1234 , @from . read_ber
You can’t perform that action at this time.
0 commit comments