Skip to content

Commit

Permalink
Update influxdb
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesGuthrie committed Oct 11, 2023
1 parent dc709a6 commit 9fb0caf
Show file tree
Hide file tree
Showing 3 changed files with 257 additions and 23 deletions.
14 changes: 7 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
language: go

go:
- 1.11.x
- 1.12.x
- 1.13.x
services:
- docker
install: true
script:
- docker run -d --name ts1 -p 5433:5432 -e POSTGRES_PASSWORD=postgres timescale/timescaledb
- docker run -d --name ts1 -p 5433:5432 -e POSTGRES_PASSWORD=postgres timescale/timescaledb:1.4.2-pg11
- docker run -d --name influx1_0 -p 8086:8086 influxdb:1.0
- GO111MODULE=on go test -race -tags=integration ./...
- go clean -testcache
- docker stop influx1_0 && docker rm influx1_0
- docker stop ts1 && docker rm ts1
- echo '- - - - -'
- docker run -d --name ts1 -p 5433:5432 -e POSTGRES_PASSWORD=postgres timescale/timescaledb
- docker run -d --name ts1 -p 5433:5432 -e POSTGRES_PASSWORD=postgres timescale/timescaledb:1.4.2-pg11
- docker run -d --name influx1_6 -p 8086:8086 influxdb:1.6
- GO111MODULE=on go test -race -tags=integration ./...
- go clean -testcache
- docker stop influx1_6 && docker rm influx1_6
- docker stop ts1 && docker rm ts1
- echo '- - - - -'
- docker run -d --name ts1 -p 5433:5432 -e POSTGRES_PASSWORD=postgres timescale/timescaledb
- docker run -d --name influx_l -p 8086:8086 influxdb
- GO111MODULE=on go test -race -tags=integration -coverprofile=coverage.txt -covermode=atomic ./...
- docker run -d --name ts1 -p 5433:5432 -e POSTGRES_PASSWORD=postgres timescale/timescaledb:1.4.2-pg11
- docker run -d --name influx1_8 -p 8086:8086 influxdb:1.8
- GO111MODULE=on go test -race -tags=integration ./...
- docker stop influx1_8 && docker rm influx1_8
- docker stop ts1 && docker rm ts1
after_success:
- bash <(curl -s https://codecov.io/bash)
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.12

require (
github.com/cockroachdb/apd v1.1.0 // indirect
github.com/influxdata/influxdb v1.7.3
github.com/influxdata/influxdb v1.7.11
github.com/influxdata/platform v0.0.0-20190117200541-d500d3cf5589 // indirect
github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
github.com/jackc/pgx v3.3.0+incompatible
Expand All @@ -13,6 +13,6 @@ require (
github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24 // indirect
github.com/spf13/cobra v0.0.3
github.com/spf13/pflag v1.0.3
github.com/stretchr/testify v1.3.0
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4
github.com/stretchr/testify v1.4.0
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
)
Loading

0 comments on commit 9fb0caf

Please sign in to comment.