Skip to content
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

chore(ci): switch to next-gen CircleCI's convenience images #91

Merged
merged 5 commits into from
Sep 13, 2021
Merged
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
28 changes: 14 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ commands:
- restore_cache:
name: Restoring Gem Cache
keys:
- &cache-key gem-cache-{{ checksum "<< parameters.path >>/<< parameters.gemspec-file >>" }}-<< parameters.ruby-image >>
- gem-cache-{{ checksum "<< parameters.path >>/<< parameters.gemspec-file >>" }}
- gem-cache-
- &cache-key gem-cache-v2-{{ checksum "<< parameters.path >>/<< parameters.gemspec-file >>" }}-<< parameters.ruby-image >>
- gem-cache-v2-{{ checksum "<< parameters.path >>/<< parameters.gemspec-file >>" }}
- gem-cache-v2-
- run:
name: Install dependencies
command: |
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
parameters:
ruby-image:
type: string
default: &default-ruby-image "circleci/ruby:2.6-stretch"
default: &default-ruby-image "cimg/ruby:2.6"
influxdb-image:
type: string
default: &default-influxdb-image "influxdb:latest"
Expand Down Expand Up @@ -180,20 +180,20 @@ workflows:
jobs:
- tests-ruby:
name: client-r3.0
ruby-image: "circleci/ruby:3.0-buster"
ruby-image: "cimg/ruby:3.0"
- tests-ruby:
name: APIs-r3.0
ruby-image: "circleci/ruby:3.0-buster"
ruby-image: "cimg/ruby:3.0"
gemspec-file: influxdb-client-apis.gemspec
path: ./apis
requires:
- client-r3.0
- tests-ruby:
name: client-r2.7
ruby-image: "circleci/ruby:2.7-buster"
ruby-image: "cimg/ruby:2.7"
- tests-ruby:
name: APIs-r2.7
ruby-image: "circleci/ruby:2.7-buster"
ruby-image: "cimg/ruby:2.7"
gemspec-file: influxdb-client-apis.gemspec
path: ./apis
requires:
Expand All @@ -218,30 +218,30 @@ workflows:
- client-r2.6-nightly
- tests-ruby:
name: client-r2.5
ruby-image: "circleci/ruby:2.5-stretch"
ruby-image: "cimg/ruby:2.5"
- tests-ruby:
name: APIs-r2.5
ruby-image: "circleci/ruby:2.5-stretch"
ruby-image: "cimg/ruby:2.5"
gemspec-file: influxdb-client-apis.gemspec
path: ./apis
requires:
- client-r2.5
- tests-ruby:
name: client-r2.4
ruby-image: "circleci/ruby:2.4-stretch"
ruby-image: "cimg/ruby:2.4"
- tests-ruby:
name: APIs-r2.4
ruby-image: "circleci/ruby:2.4-stretch"
ruby-image: "cimg/ruby:2.4"
gemspec-file: influxdb-client-apis.gemspec
path: ./apis
requires:
- client-r2.4
- tests-ruby:
name: client-jruby
ruby-image: "circleci/jruby:9.2.17.0"
ruby-image: "jruby:9.2.17.0"
- tests-ruby:
name: APIs-jruby
ruby-image: "circleci/jruby:9.2.17.0"
ruby-image: "jruby:9.2.17.0"
gemspec-file: influxdb-client-apis.gemspec
path: ./apis
requires:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## 2.1.0 [unreleased]

### CI
1. [#91](https://github.com/influxdata/influxdb-client-ruby/pull/91): Switch to next-gen CircleCI's convenience images

## 2.0.0 [2021-09-13]

### Bug Fixes
Expand Down