File tree 5 files changed +26
-35
lines changed
5 files changed +26
-35
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,16 @@ commands:
73
73
jobs :
74
74
tests-dotnet-2-2 :
75
75
machine : true
76
+ parameters :
77
+ influxdb-repository :
78
+ type : string
79
+ default : " influxdb"
80
+ influxdb-version :
81
+ type : string
82
+ default : " 2.0.0-beta"
83
+ environment :
84
+ INFLUXDB_V2_REPOSITORY : << parameters.influxdb-repository >>
85
+ INFLUXDB_V2_VERSION : << parameters.influxdb-version >>
76
86
steps :
77
87
- prepare
78
88
- client-test :
@@ -113,10 +123,16 @@ workflows:
113
123
version : 2
114
124
build :
115
125
jobs :
116
- - tests-dotnet-2-2
126
+ - tests-dotnet-2-2 :
127
+ name : test-beta
128
+ - tests-dotnet-2-2 :
129
+ name : test-nightly
130
+ influxdb-repository : " influx"
131
+ influxdb-version : " nightly"
117
132
- deploy-preview :
118
133
requires :
119
- - tests-dotnet-2-2
134
+ - test-beta
135
+ - test-nightly
120
136
filters :
121
137
branches :
122
138
only : master
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
### API
4
4
1 . [ #52 ] ( https://github.com/influxdata/influxdb-client-java/pull/52 ) : Updated swagger to latest version
5
5
6
+ ### CI
7
+ 1 . [ #54 ] ( https://github.com/influxdata/influxdb-client-java/pull/54 ) : Added beta release to continuous integration
8
+
6
9
## 1.3.0 [ 2019-12-06]
7
10
8
11
### Performance
Original file line number Diff line number Diff line change 10
10
namespace InfluxDB . Client . Test
11
11
{
12
12
[ TestFixture ]
13
+ [ Ignore ( "https://github.com/influxdata/influxdb/issues/16462" ) ]
13
14
public class ItChecksApiTest : AbstractItClientTest
14
15
{
15
16
private string _orgId ;
Original file line number Diff line number Diff line change @@ -30,9 +30,11 @@ DEFAULT_INFLUXDB_VERSION="1.7"
30
30
INFLUXDB_VERSION=" ${INFLUXDB_VERSION:- $DEFAULT_INFLUXDB_VERSION } "
31
31
INFLUXDB_IMAGE=influxdb:${INFLUXDB_VERSION} -alpine
32
32
33
- DEFAULT_INFLUXDB_V2_VERSION=" nightly"
33
+ DEFAULT_INFLUXDB_V2_REPOSITORY=" influxdb"
34
+ DEFAULT_INFLUXDB_V2_VERSION=" 2.0.0-beta"
35
+ INFLUXDB_V2_REPOSITORY=" ${INFLUXDB_V2_REPOSITORY:- $DEFAULT_INFLUXDB_V2_REPOSITORY } "
34
36
INFLUXDB_V2_VERSION=" ${INFLUXDB_V2_VERSION:- $DEFAULT_INFLUXDB_V2_VERSION } "
35
- INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY} influx :${INFLUXDB_V2_VERSION}
37
+ INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY}${INFLUXDB_V2_REPOSITORY} :${INFLUXDB_V2_VERSION}
36
38
37
39
SCRIPT_PATH=" $( cd " $( dirname " $0 " ) " ; pwd -P ) "
38
40
You can’t perform that action at this time.
0 commit comments