influxdb-client 1.0.0.pre.121 → 1.0.0.pre.126
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.circleci/config.yml +7 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af37d6f32126dae3d2ccc0a00e5e6d6cc02b5062d5fa3ae800d7e5a658cf2f81
|
|
4
|
+
data.tar.gz: 7b897ab82c680890ddc9b0378b417e3f06599d45eb27ce92598a3b1629a79f5a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8b2cd017f76ade0e707535dbaef2bf0845bebbfab7c0263dbf8a4b80eef7a208bef8e5eac4557882e5b69edaa82eaf11381190ac80ba1137590988586421cd3
|
|
7
|
+
data.tar.gz: f92405f08a6e0a9077fc0a65cd3a6e6e582638a59761beb8dc52980394391ff9ee76e0c17ad1b1ca3ec4b6b02b0225ac17e17a443fb3bcbaaaf7edd9f57fe87f
|
data/.circleci/config.yml
CHANGED
|
@@ -48,7 +48,8 @@ commands:
|
|
|
48
48
|
name: Install dependencies
|
|
49
49
|
command: |
|
|
50
50
|
gem install bundler
|
|
51
|
-
bundle
|
|
51
|
+
bundle config set path 'vendor/bundle'
|
|
52
|
+
bundle install --jobs=4 --retry=3
|
|
52
53
|
- run:
|
|
53
54
|
name: Static code analyze
|
|
54
55
|
command: |
|
|
@@ -112,6 +113,9 @@ workflows:
|
|
|
112
113
|
version: 2
|
|
113
114
|
build:
|
|
114
115
|
jobs:
|
|
116
|
+
- tests-ruby:
|
|
117
|
+
name: ruby-2.7
|
|
118
|
+
ruby-image: "circleci/ruby:2.7-buster"
|
|
115
119
|
- tests-ruby:
|
|
116
120
|
name: ruby-2.6
|
|
117
121
|
- tests-ruby:
|
|
@@ -122,6 +126,7 @@ workflows:
|
|
|
122
126
|
ruby-image: "circleci/ruby:2.4-stretch"
|
|
123
127
|
- deploy-preview:
|
|
124
128
|
requires:
|
|
129
|
+
- ruby-2.7
|
|
125
130
|
- ruby-2.6
|
|
126
131
|
- ruby-2.5
|
|
127
132
|
- ruby-2.4
|
|
@@ -138,4 +143,4 @@ workflows:
|
|
|
138
143
|
only:
|
|
139
144
|
- master
|
|
140
145
|
jobs:
|
|
141
|
-
- tests-ruby
|
|
146
|
+
- tests-ruby
|