influxdb-client 1.0.0.pre.138 → 1.0.0.pre.144
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 +8 -11
- 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: 16040bc40dc90a2bc3922071ab93cd3faf0164c46c3f021f84b8d174beacc524
|
|
4
|
+
data.tar.gz: a5cc76e3e3eb3b6cdba407e67067b9a7848816ab95a8e2c72c67dc71cf22b868
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 62609e572a45b25d8deba6812048d102ceab96ab0fae7362ddc1537708075914131c8a27949ebc0fbfff16455b9a3a4cd344a4d5609e983709bf99473b7e0d1d
|
|
7
|
+
data.tar.gz: 1fb56efb65014c9dc5cec41da73821dfa8bd3c571b6b415f6f55d395009b7ae6233c77089b4cade88c9e3b8360870c72dee4d1d3ce1d431cd1eba59242cee979
|
data/.circleci/config.yml
CHANGED
|
@@ -76,18 +76,12 @@ jobs:
|
|
|
76
76
|
ruby-image:
|
|
77
77
|
type: string
|
|
78
78
|
default: &default-ruby-image "circleci/ruby:2.6-stretch"
|
|
79
|
-
influxdb-
|
|
79
|
+
influxdb-image:
|
|
80
80
|
type: string
|
|
81
|
-
default: "influxdb"
|
|
82
|
-
influxdb-version:
|
|
83
|
-
type: string
|
|
84
|
-
default: "2.0.0-beta"
|
|
81
|
+
default: &default-influxdb-image "influxdb:2.0.0-beta"
|
|
85
82
|
docker:
|
|
86
83
|
- image: << parameters.ruby-image >>
|
|
87
|
-
- image: &influx-image quay.io/influxdb
|
|
88
|
-
environment:
|
|
89
|
-
INFLUXDB_V2_REPOSITORY: << parameters.influxdb-repository >>
|
|
90
|
-
INFLUXDB_V2_VERSION: << parameters.influxdb-version >>
|
|
84
|
+
- image: &influx-image quay.io/influxdb/<< parameters.influxdb-image >>
|
|
91
85
|
steps:
|
|
92
86
|
- prepare
|
|
93
87
|
- test:
|
|
@@ -95,6 +89,10 @@ jobs:
|
|
|
95
89
|
- storing-test-results
|
|
96
90
|
|
|
97
91
|
deploy-preview:
|
|
92
|
+
parameters:
|
|
93
|
+
influxdb-image:
|
|
94
|
+
type: string
|
|
95
|
+
default: *default-influxdb-image
|
|
98
96
|
docker:
|
|
99
97
|
- image: *default-ruby-image
|
|
100
98
|
- image: *influx-image
|
|
@@ -129,8 +127,7 @@ workflows:
|
|
|
129
127
|
name: ruby-2.6
|
|
130
128
|
- tests-ruby:
|
|
131
129
|
name: ruby-2.6-nightly
|
|
132
|
-
influxdb-
|
|
133
|
-
influxdb-version: "nightly"
|
|
130
|
+
influxdb-image: "influx:nightly"
|
|
134
131
|
- tests-ruby:
|
|
135
132
|
name: ruby-2.5
|
|
136
133
|
ruby-image: "circleci/ruby:2.5-stretch"
|