Skip to content

Commit a393440

Browse files
authored
Remove ca-bundle from the flow (#15)
* Remove ca-bundle * Bump major version of the gem, because we remove jruby 9.2 support due to the absence of it's own certificate * Bump jruby version in the CI to make it green after certificate removal * Add ruby 2.7 and ruby 3.0 to the CI * Add jruby 9.2.20 to the CI * Return back ruby 2.4 and ruby 2.5
1 parent 06ddfdc commit a393440

File tree

4 files changed

+9
-3557
lines changed

4 files changed

+9
-3557
lines changed

.circleci/config.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ executors:
88
ruby-24: { docker: [{ image: "ruby:2.4" }] }
99
ruby-25: { docker: [{ image: "ruby:2.5" }] }
1010
ruby-26: { docker: [{ image: "ruby:2.6" }] }
11-
jruby-92: { docker: [{ image: "jruby:9.2.7-jdk" }] }
11+
ruby-27: { docker: [{ image: "ruby:2.7" }] }
12+
ruby-30: { docker: [{ image: "ruby:3.0" }] }
13+
jruby-92: { docker: [{ image: "jruby:9.2.20-jdk" }] }
14+
jruby-93: { docker: [{ image: "jruby:9.3.4-jdk" }] }
1215

1316
jobs:
1417
build:
@@ -66,4 +69,8 @@ workflows:
6669
- build: { name: run-tests-ruby-2.4, executor: ruby-24 }
6770
- build: { name: run-tests-ruby-2.5, executor: ruby-25 }
6871
- build: { name: run-tests-ruby-2.6, executor: ruby-26 }
72+
- build: { name: run-tests-ruby-2.7, executor: ruby-27 }
73+
- build: { name: run-tests-ruby-3.0, executor: ruby-30 }
6974
- build: { name: run-tests-jruby-92, executor: jruby-92 }
75+
- build: { name: run-tests-jruby-93, executor: jruby-93 }
76+

0 commit comments

Comments
 (0)