.circleci/config.yml in request_handler-2.1.1 vs .circleci/config.yml in request_handler-2.2.0
- old
+ new
@@ -17,11 +17,10 @@
key: gem-cache-{{ .Branch }}-{{ checksum "request_handler.gemspec" }}
paths:
- vendor/bundle
- run: ruby -v
- - run: bundle exec danger
- run:
name: run tests
command: |
mkdir /tmp/test-results
TEST_FILES="$(circleci tests glob "spec/**/*_spec.rb" | \
@@ -40,36 +39,36 @@
path: /tmp/test-results
destination: test-results
version: 2
jobs:
- ruby-2.4:
+ ruby-2.6:
docker:
- - image: circleci/ruby:2.4
+ - image: circleci/ruby:2.6
steps:
*common_steps
- ruby-2.5:
+ ruby-2.7:
docker:
- - image: circleci/ruby:2.5
+ - image: circleci/ruby:2.7
steps:
*common_steps
- jruby-9.2:
+ jruby-9.3:
docker:
- - image: circleci/jruby:9.2
+ - image: circleci/jruby:9.3
steps:
*common_steps
- jruby-9.2-indy:
+ jruby-9.3-indy:
docker:
- - image: circleci/jruby:9.2
+ - image: circleci/jruby:9.3
environment:
JRUBY_OPTS: '-Xcompile.invokedynamic=true'
steps:
*common_steps
workflows:
version: 2
build:
jobs:
- - ruby-2.4
- - ruby-2.5
- - jruby-9.2
- - jruby-9.2-indy
+ - ruby-2.6
+ - ruby-2.7
+ - jruby-9.3
+ - jruby-9.3-indy
\ No newline at end of file