Skip to content

Ruby 3.0 upgrade in CircleCI #68

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# CircleCI configuration, reducing the complexity of the entire block.
# ---------------------------------------------------------------------------------------------------------------------
docker_image: &docker_image
image: 916869144969.dkr.ecr.us-east-1.amazonaws.com/customink/base-ruby-ci:2.1-v2.7
image: 916869144969.dkr.ecr.us-east-1.amazonaws.com/customink/ruby-mysql-ci:focal-3.1
aws_auth:
aws_access_key_id: ${PRODUCTION_AWS_ACCESS_KEY_ID}
aws_secret_access_key: ${PRODUCTION_AWS_SECRET_ACCESS_KEY}
Expand Down Expand Up @@ -46,9 +46,9 @@ commands:
- run:
name: "Minitest Test Suite"
command: |
cc-test-reporter before-build
# cc-test-reporter before-build
bin/test
cc-test-reporter after-build
# cc-test-reporter after-build
# ---------------------------------------------------------------------------------------------------------------------
# CircleCI Job Configuration
#
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ gemspec

group :test do
gem 'minitest-ci', require: false
gem 'simplecov', '< 0.18', require: false
gem 'simplecov', require: false
end
2 changes: 1 addition & 1 deletion vertex_client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rails"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "vcr", "~> 4.0"
spec.add_development_dependency "vcr", "~> 6.1"
spec.add_development_dependency "webmock"
spec.add_development_dependency "wwtd"

Expand Down