Skip to content

Commit aa0c2d1

Browse files
authored
chore: build also over beta version
1 parent 333c47c commit aa0c2d1

File tree

5 files changed

+26
-35
lines changed

5 files changed

+26
-35
lines changed

.circleci/config.yml

+18-2
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,16 @@ commands:
7373
jobs:
7474
tests-dotnet-2-2:
7575
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 >>
7686
steps:
7787
- prepare
7888
- client-test:
@@ -113,10 +123,16 @@ workflows:
113123
version: 2
114124
build:
115125
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"
117132
- deploy-preview:
118133
requires:
119-
- tests-dotnet-2-2
134+
- test-beta
135+
- test-nightly
120136
filters:
121137
branches:
122138
only: master

.travis.yml

-31
This file was deleted.

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
### API
44
1. [#52](https://github.com/influxdata/influxdb-client-java/pull/52): Updated swagger to latest version
55

6+
### CI
7+
1. [#54](https://github.com/influxdata/influxdb-client-java/pull/54): Added beta release to continuous integration
8+
69
## 1.3.0 [2019-12-06]
710

811
### Performance

Client.Test/ItChecksApiTest.cs

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
namespace InfluxDB.Client.Test
1111
{
1212
[TestFixture]
13+
[Ignore("https://github.com/influxdata/influxdb/issues/16462")]
1314
public class ItChecksApiTest : AbstractItClientTest
1415
{
1516
private string _orgId;

Scripts/influxdb-restart.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,11 @@ DEFAULT_INFLUXDB_VERSION="1.7"
3030
INFLUXDB_VERSION="${INFLUXDB_VERSION:-$DEFAULT_INFLUXDB_VERSION}"
3131
INFLUXDB_IMAGE=influxdb:${INFLUXDB_VERSION}-alpine
3232

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}"
3436
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}
3638

3739
SCRIPT_PATH="$( cd "$(dirname "$0")" ; pwd -P )"
3840

0 commit comments

Comments
 (0)