Skip to content

Commit

Permalink
circleci, Readme: fix circle build & point to it
Browse files Browse the repository at this point in the history
* Fix the v3.0 circle CI build; we had a duplicate jobs block and that
  was breaking it.
* Update Readme.md on this branch so it points to this branch's build
  status.
* Advance versions of go that we build for to the most recent 4 versions.
  • Loading branch information
hblanks committed Jul 6, 2020
1 parent 1bcb5ac commit 7a20670
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 15 deletions.
23 changes: 9 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ jobs:
steps:
- checkout
- run: make ci
build-go110:
build-go113:
docker:
- image: circleci/golang:1.10
- image: circleci/golang:1.13
working_directory: /go/src/github.com/segmentio/analytics-go
steps:
- checkout
- run: make ci
build-go19:
build-go112:
docker:
- image: circleci/golang:1.9
- image: circleci/golang:1.12
working_directory: /go/src/github.com/segmentio/analytics-go
steps:
- checkout
- run: make ci
build-go18:
build-go111:
docker:
- image: circleci/golang:1.8
- image: circleci/golang:1.11
working_directory: /go/src/github.com/segmentio/analytics-go
steps:
- checkout
Expand All @@ -35,11 +35,6 @@ workflows:
build:
jobs:
- build-golatest
- build-go110
- build-go19
- build-go18
jobs:
- build-golatest
- build-go110
- build-go19
- build-go18
- build-go113
- build-go112
- build-go111
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# analytics-go [![Circle CI](https://circleci.com/gh/segmentio/analytics-go/tree/master.svg?style=shield)](https://circleci.com/gh/segmentio/analytics-go/tree/master) [![go-doc](https://godoc.org/github.com/segmentio/analytics-go?status.svg)](https://godoc.org/github.com/segmentio/analytics-go)
# analytics-go [![Circle CI](https://circleci.com/gh/segmentio/analytics-go/tree/v3.0.svg?style=shield)](https://circleci.com/gh/segmentio/analytics-go/tree/v3.0) [![go-doc](https://godoc.org/github.com/segmentio/analytics-go?status.svg)](https://godoc.org/github.com/segmentio/analytics-go)

Segment analytics client for Go.

Expand Down

0 comments on commit 7a20670

Please sign in to comment.