Skip to content

Commit

Permalink
Drop Ruby 2.5 and JRuby 9.2 from CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HarlemSquirrel committed Mar 29, 2023
1 parent 89647a2 commit 3ae9724
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 12 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@ jobs:
strategy:
matrix:
ruby:
- "2.5"
- "2.6"
- "2.7"
- "3.0"
- "jruby-9.2"
- "3.1"
- "3.2"
- "jruby-9.3"
- "jruby-9.4"
- "truffleruby-21.0.0"
steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions History.rdoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
=== Net::LDAP 0.18.0
* Fix escaping of # and space in attrs #408
* Add support to use SNI #406
* Drop Ruby 2.5 and JRuby 9.2 from CI tests

=== Net::LDAP 0.17.1
* Fixed shebang of bash #385
Expand Down
48 changes: 38 additions & 10 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ services:
volumes:
- ./test/fixtures/ldif:/ldif:ro

ci-2.5:
image: ruby:2.5
ci-2.6:
image: ruby:2.7
entrypoint: /code/ci-run.sh
environment:
INTEGRATION: openldap
Expand All @@ -38,7 +38,7 @@ services:
- .:/code
working_dir: /code

ci-2.6:
ci-2.7:
image: ruby:2.7
entrypoint: /code/ci-run.sh
environment:
Expand All @@ -52,8 +52,8 @@ services:
- .:/code
working_dir: /code

ci-2.7:
image: ruby:2.7
ci-3.0:
image: ruby:3.0
entrypoint: /code/ci-run.sh
environment:
INTEGRATION: openldap
Expand All @@ -66,8 +66,8 @@ services:
- .:/code
working_dir: /code

ci-3.0:
image: ruby:3.0
ci-3.1:
image: ruby:3.1
entrypoint: /code/ci-run.sh
environment:
INTEGRATION: openldap
Expand All @@ -79,7 +79,21 @@ services:
volumes:
- .:/code
working_dir: /code


ci-3.2:
image: ruby:3.2
entrypoint: /code/ci-run.sh
environment:
INTEGRATION: openldap
INTEGRATION_HOST: ldap.example.org
depends_on:
- openldap
networks:
integration_test_network:
volumes:
- .:/code
working_dir: /code

ci-truffleruby-21.0.0:
image: flavorjones/truffleruby:21.0.0
entrypoint: /code/ci-run.sh
Expand All @@ -94,8 +108,22 @@ services:
- .:/code
working_dir: /code

ci-jruby-9.2:
image: jruby:9.2
ci-jruby-9.3:
image: jruby:9.3
entrypoint: /code/ci-run.sh
environment:
INTEGRATION: openldap
INTEGRATION_HOST: ldap.example.org
depends_on:
- openldap
networks:
integration_test_network:
volumes:
- .:/code
working_dir: /code

ci-jruby-9.4:
image: jruby:9.4
entrypoint: /code/ci-run.sh
environment:
INTEGRATION: openldap
Expand Down

0 comments on commit 3ae9724

Please sign in to comment.