Skip to content

Commit 789b133

Browse files
Merge branch 'master' into #431-improvement
2 parents 7557c6f + ca78b20 commit 789b133

File tree

2 files changed

+13
-30
lines changed

2 files changed

+13
-30
lines changed

.github/workflows/test.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,14 @@ jobs:
1919
strategy:
2020
matrix:
2121
ruby:
22-
- "2.6"
23-
- "2.7"
2422
- "3.0"
2523
- "3.1"
2624
- "3.2"
25+
- "3.3"
2726
- "jruby-9.3"
2827
- "jruby-9.4"
29-
- "truffleruby-22"
28+
- "truffleruby"
3029
steps:
3130
- uses: actions/checkout@v2
3231
- name: Run tests with Ruby ${{ matrix.ruby }}
33-
run: docker-compose run ci-${{ matrix.ruby }}
32+
run: docker compose run ci-${{ matrix.ruby }}

docker-compose.yml

+10-26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: "3.8"
2-
31
networks:
42
integration_test_network:
53

@@ -24,22 +22,8 @@ services:
2422
volumes:
2523
- ./test/fixtures/ldif:/ldif:ro
2624

27-
ci-2.6:
28-
image: ruby:2.7
29-
entrypoint: /code/ci-run.sh
30-
environment:
31-
INTEGRATION: openldap
32-
INTEGRATION_HOST: ldap.example.org
33-
depends_on:
34-
- openldap
35-
networks:
36-
integration_test_network:
37-
volumes:
38-
- .:/code
39-
working_dir: /code
40-
41-
ci-2.7:
42-
image: ruby:2.7
25+
ci-3.0:
26+
image: ruby:3.0
4327
entrypoint: /code/ci-run.sh
4428
environment:
4529
INTEGRATION: openldap
@@ -52,8 +36,8 @@ services:
5236
- .:/code
5337
working_dir: /code
5438

55-
ci-3.0:
56-
image: ruby:3.0
39+
ci-3.1:
40+
image: ruby:3.1
5741
entrypoint: /code/ci-run.sh
5842
environment:
5943
INTEGRATION: openldap
@@ -66,8 +50,8 @@ services:
6650
- .:/code
6751
working_dir: /code
6852

69-
ci-3.1:
70-
image: ruby:3.1
53+
ci-3.2:
54+
image: ruby:3.2
7155
entrypoint: /code/ci-run.sh
7256
environment:
7357
INTEGRATION: openldap
@@ -80,8 +64,8 @@ services:
8064
- .:/code
8165
working_dir: /code
8266

83-
ci-3.2:
84-
image: ruby:3.2
67+
ci-3.3:
68+
image: ruby:3.3
8569
entrypoint: /code/ci-run.sh
8670
environment:
8771
INTEGRATION: openldap
@@ -95,8 +79,8 @@ services:
9579
working_dir: /code
9680

9781
# https://github.com/flavorjones/truffleruby/pkgs/container/truffleruby
98-
ci-truffleruby-22:
99-
image: ghcr.io/flavorjones/truffleruby:22.3.1
82+
ci-truffleruby:
83+
image: ghcr.io/flavorjones/truffleruby:stable
10084
entrypoint: /code/ci-run.sh
10185
environment:
10286
INTEGRATION: openldap

0 commit comments

Comments
 (0)