File tree Expand file tree Collapse file tree 3 files changed +41
-12
lines changed Expand file tree Collapse file tree 3 files changed +41
-12
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ jobs:
1919 strategy :
2020 matrix :
2121 ruby :
22- - " 2.5"
2322 - " 2.6"
2423 - " 2.7"
2524 - " 3.0"
26- - " jruby-9.2"
25+ - " jruby-9.3"
26+ - " jruby-9.4"
2727 - " truffleruby-21.0.0"
2828 steps :
2929 - uses : actions/checkout@v2
Original file line number Diff line number Diff line change 11=== Net::LDAP 0.18.0
22* Fix escaping of # and space in attrs #408
33* Add support to use SNI #406
4+ * Drop Ruby 2.5 and JRuby 9.2 from CI tests
45
56=== Net::LDAP 0.17.1
67* Fixed shebang of bash #385
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ services:
2424 volumes :
2525 - ./test/fixtures/ldif:/ldif:ro
2626
27- ci-2.5 :
28- image : ruby:2.5
27+ ci-2.6 :
28+ image : ruby:2.7
2929 entrypoint : /code/ci-run.sh
3030 environment :
3131 INTEGRATION : openldap
@@ -38,7 +38,7 @@ services:
3838 - .:/code
3939 working_dir : /code
4040
41- ci-2.6 :
41+ ci-2.7 :
4242 image : ruby:2.7
4343 entrypoint : /code/ci-run.sh
4444 environment :
@@ -52,8 +52,8 @@ services:
5252 - .:/code
5353 working_dir : /code
5454
55- ci-2.7 :
56- image : ruby:2.7
55+ ci-3.0 :
56+ image : ruby:3.0
5757 entrypoint : /code/ci-run.sh
5858 environment :
5959 INTEGRATION : openldap
@@ -66,8 +66,8 @@ services:
6666 - .:/code
6767 working_dir : /code
6868
69- ci-3.0 :
70- image : ruby:3.0
69+ ci-3.1 :
70+ image : ruby:3.1
7171 entrypoint : /code/ci-run.sh
7272 environment :
7373 INTEGRATION : openldap
@@ -79,7 +79,21 @@ services:
7979 volumes :
8080 - .:/code
8181 working_dir : /code
82-
82+
83+ ci-3.2 :
84+ image : ruby:3.2
85+ entrypoint : /code/ci-run.sh
86+ environment :
87+ INTEGRATION : openldap
88+ INTEGRATION_HOST : ldap.example.org
89+ depends_on :
90+ - openldap
91+ networks :
92+ integration_test_network :
93+ volumes :
94+ - .:/code
95+ working_dir : /code
96+
8397 ci-truffleruby-21.0.0 :
8498 image : flavorjones/truffleruby:21.0.0
8599 entrypoint : /code/ci-run.sh
@@ -94,8 +108,22 @@ services:
94108 - .:/code
95109 working_dir : /code
96110
97- ci-jruby-9.2 :
98- image : jruby:9.2
111+ ci-jruby-9.3 :
112+ image : jruby:9.3
113+ entrypoint : /code/ci-run.sh
114+ environment :
115+ INTEGRATION : openldap
116+ INTEGRATION_HOST : ldap.example.org
117+ depends_on :
118+ - openldap
119+ networks :
120+ integration_test_network :
121+ volumes :
122+ - .:/code
123+ working_dir : /code
124+
125+ ci-jruby-9.4 :
126+ image : jruby:9.4
99127 entrypoint : /code/ci-run.sh
100128 environment :
101129 INTEGRATION : openldap
You can’t perform that action at this time.
0 commit comments