File tree 2 files changed +47
-5
lines changed
2 files changed +47
-5
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ jobs:
20
20
matrix :
21
21
ruby :
22
22
- " 2.5"
23
- # - "2.6"
24
- # - "2.7"
25
- # - "jruby-9.2"
23
+ - " 2.6"
24
+ - " 2.7"
25
+ - " jruby-9.2"
26
26
steps :
27
27
- uses : actions/checkout@v2
28
28
- name : Run tests with Ruby ${{ matrix.ruby }}
29
- run : docker-compose run ci-ruby- ${{ matrix.ruby }}
29
+ run : docker-compose run ci-${{ matrix.ruby }}
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ services:
24
24
volumes :
25
25
- ./test/fixtures/ldif:/ldif:ro
26
26
27
- ci-ruby- 2.5 :
27
+ ci-2.5 :
28
28
image : ruby:2.5
29
29
entrypoint : /code/ci-run.sh
30
30
environment :
@@ -37,3 +37,45 @@ services:
37
37
volumes :
38
38
- .:/code
39
39
working_dir : /code
40
+
41
+ ci-2.6 :
42
+ image : ruby:2.7
43
+ entrypoint : /code/ci-run.sh
44
+ environment :
45
+ INTEGRATION : openldap
46
+ INTEGRATION_HOST : ldap.example.org
47
+ depends_on :
48
+ - openldap
49
+ networks :
50
+ integration_test_network :
51
+ volumes :
52
+ - .:/code
53
+ working_dir : /code
54
+
55
+ ci-2.7 :
56
+ image : ruby:2.7
57
+ entrypoint : /code/ci-run.sh
58
+ environment :
59
+ INTEGRATION : openldap
60
+ INTEGRATION_HOST : ldap.example.org
61
+ depends_on :
62
+ - openldap
63
+ networks :
64
+ integration_test_network :
65
+ volumes :
66
+ - .:/code
67
+ working_dir : /code
68
+
69
+ ci-jruby-9.2 :
70
+ image : jruby:9.2
71
+ entrypoint : /code/ci-run.sh
72
+ environment :
73
+ INTEGRATION : openldap
74
+ INTEGRATION_HOST : ldap.example.org
75
+ depends_on :
76
+ - openldap
77
+ networks :
78
+ integration_test_network :
79
+ volumes :
80
+ - .:/code
81
+ working_dir : /code
You can’t perform that action at this time.
0 commit comments