Commit 73a2141 1 parent 8c7fd18 commit 73a2141 Copy full SHA for 73a2141
File tree 4 files changed +23
-15
lines changed
4 files changed +23
-15
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,16 @@ commands:
42
42
jobs :
43
43
tests-python-3 :
44
44
machine : true
45
+ parameters :
46
+ influxdb-repository :
47
+ type : string
48
+ default : " influxdb"
49
+ influxdb-version :
50
+ type : string
51
+ default : " 2.0.0-beta"
52
+ environment :
53
+ INFLUXDB_V2_REPOSITORY : << parameters.influxdb-repository >>
54
+ INFLUXDB_V2_VERSION : << parameters.influxdb-version >>
45
55
steps :
46
56
- prepare
47
57
- client-test :
@@ -56,7 +66,12 @@ workflows:
56
66
version : 2
57
67
build :
58
68
jobs :
59
- - tests-python-3
69
+ - tests-python-3 :
70
+ name : test-beta
71
+ - tests-python-3 :
72
+ name : test-nightly
73
+ influxdb-repository : " influx"
74
+ influxdb-version : " nightly"
60
75
61
76
nightly :
62
77
triggers :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
### API
4
4
1 . [ #47 ] ( https://github.com/influxdata/influxdb-client-python/pull/47 ) : Updated swagger to latest version
5
5
6
+ ### CI
7
+ 1 . [ #49 ] ( https://github.com/influxdata/influxdb-client-python/pull/49 ) : Added beta release to continuous integration
8
+
6
9
### Bugs
7
10
1 . [ #48 ] ( https://github.com/influxdata/influxdb-client-python/pull/48 ) : InfluxDBClient default org is used by WriteAPI
8
11
Original file line number Diff line number Diff line change @@ -26,9 +26,11 @@ set -e
26
26
DEFAULT_DOCKER_REGISTRY=" quay.io/influxdb/"
27
27
DOCKER_REGISTRY=" ${DOCKER_REGISTRY:- $DEFAULT_DOCKER_REGISTRY } "
28
28
29
- DEFAULT_INFLUXDB_V2_VERSION=" nightly"
29
+ DEFAULT_INFLUXDB_V2_REPOSITORY=" influxdb"
30
+ DEFAULT_INFLUXDB_V2_VERSION=" 2.0.0-beta"
31
+ INFLUXDB_V2_REPOSITORY=" ${INFLUXDB_V2_REPOSITORY:- $DEFAULT_INFLUXDB_V2_REPOSITORY } "
30
32
INFLUXDB_V2_VERSION=" ${INFLUXDB_V2_VERSION:- $DEFAULT_INFLUXDB_V2_VERSION } "
31
- INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY} influx :${INFLUXDB_V2_VERSION}
33
+ INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY}${INFLUXDB_V2_REPOSITORY} :${INFLUXDB_V2_VERSION}
32
34
33
35
SCRIPT_PATH=" $( cd " $( dirname " $0 " ) " ; pwd -P ) "
34
36
You can’t perform that action at this time.
0 commit comments