2019-07-01 20:17:00 +00:00
|
|
|
version: 2.1
|
|
|
|
orbs:
|
|
|
|
go: gotest/tools@0.0.9
|
|
|
|
|
|
|
|
|
2019-07-08 14:31:43 +00:00
|
|
|
commands:
|
2019-07-08 14:45:47 +00:00
|
|
|
install-deps:
|
|
|
|
steps:
|
|
|
|
- go/install-ssh
|
|
|
|
- go/install: {package: git}
|
|
|
|
- go/install: {package: bzr}
|
2019-07-08 14:31:43 +00:00
|
|
|
prepare:
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: git submodule sync
|
|
|
|
- run: git submodule update --init
|
|
|
|
|
|
|
|
|
2019-07-02 09:19:48 +00:00
|
|
|
jobs:
|
|
|
|
mod-tidy-check:
|
|
|
|
executor: go/circleci-golang
|
|
|
|
steps:
|
|
|
|
- go/install-ssh
|
|
|
|
- checkout
|
2019-07-02 09:42:22 +00:00
|
|
|
- go/mod-download
|
2019-07-02 09:19:48 +00:00
|
|
|
- go/mod-tidy-check
|
|
|
|
|
2019-07-08 14:31:43 +00:00
|
|
|
test:
|
|
|
|
description: |
|
|
|
|
Run tests with gotestsum.
|
|
|
|
parameters:
|
|
|
|
executor:
|
|
|
|
type: executor
|
|
|
|
default: go/golang
|
|
|
|
go-test-flags:
|
|
|
|
type: string
|
|
|
|
default: ""
|
|
|
|
description: Flags passed to go test.
|
|
|
|
packages:
|
|
|
|
type: string
|
|
|
|
default: "./..."
|
|
|
|
description: Import paths of packages to be tested.
|
|
|
|
test-suite-name:
|
|
|
|
type: string
|
|
|
|
default: unit
|
|
|
|
description: Test suite name to report to CircleCI.
|
|
|
|
gotestsum-format:
|
|
|
|
type: string
|
|
|
|
default: short
|
|
|
|
description: gotestsum format. https://github.com/gotestyourself/gotestsum#format
|
|
|
|
coverage:
|
|
|
|
type: string
|
|
|
|
default: -coverprofile=coverage.txt
|
|
|
|
description: Coverage flag. Set to the empty string to disable.
|
|
|
|
codecov-upload:
|
|
|
|
type: boolean
|
|
|
|
default: false
|
|
|
|
description: |
|
|
|
|
Upload coverage report to https://codecov.io/. Requires the codecov API token to be
|
|
|
|
set as an environment variable for private projects.
|
|
|
|
executor: << parameters.executor >>
|
|
|
|
steps:
|
2019-07-08 14:45:47 +00:00
|
|
|
- install-deps
|
2019-07-08 14:31:43 +00:00
|
|
|
- prepare
|
|
|
|
- go/mod-download
|
2019-07-08 14:41:29 +00:00
|
|
|
- run: make deps
|
2019-07-08 14:31:43 +00:00
|
|
|
- go/install-gotestsum
|
|
|
|
- run:
|
|
|
|
name: go test
|
|
|
|
environment:
|
|
|
|
GOTESTSUM_JUNITFILE: /tmp/test-reports/<< parameters.test-suite-name >>/junit.xml
|
|
|
|
GOTESTSUM_FORMAT: << parameters.gotestsum-format >>
|
|
|
|
command: |
|
|
|
|
mkdir -p /tmp/test-reports/<< parameters.test-suite-name >>
|
|
|
|
gotestsum -- \
|
|
|
|
<< parameters.coverage >> \
|
|
|
|
<< parameters.go-test-flags >> \
|
|
|
|
<< parameters.packages >>
|
|
|
|
- store_test_results:
|
|
|
|
path: /tmp/test-reports
|
|
|
|
- when:
|
|
|
|
condition: << parameters.codecov-upload >>
|
|
|
|
steps:
|
|
|
|
- go/install: {package: bash}
|
|
|
|
- go/install: {package: curl}
|
|
|
|
- run:
|
|
|
|
shell: /bin/bash -eo pipefail
|
|
|
|
command: |
|
|
|
|
bash <(curl -s https://codecov.io/bash)
|
|
|
|
|
|
|
|
lint:
|
|
|
|
description: |
|
|
|
|
Run golangci-lint.
|
|
|
|
parameters:
|
|
|
|
executor:
|
|
|
|
type: executor
|
|
|
|
default: go/golang
|
|
|
|
golangci-lint-version:
|
|
|
|
type: string
|
|
|
|
default: 1.15.0
|
|
|
|
concurrency:
|
|
|
|
type: string
|
|
|
|
default: '2'
|
|
|
|
description: |
|
|
|
|
Concurrency used to run linters. Defaults to 2 because NumCPU is not
|
|
|
|
aware of container CPU limits.
|
|
|
|
executor: << parameters.executor >>
|
|
|
|
steps:
|
2019-07-08 14:45:47 +00:00
|
|
|
- install-deps
|
2019-07-08 14:31:43 +00:00
|
|
|
- prepare
|
|
|
|
- go/mod-download
|
2019-07-08 14:41:29 +00:00
|
|
|
- run: make deps
|
2019-07-08 14:31:43 +00:00
|
|
|
- go/install-golangci-lint:
|
|
|
|
version: << parameters.golangci-lint-version >>
|
|
|
|
- run:
|
|
|
|
name: Lint
|
|
|
|
command: |
|
|
|
|
golangci-lint run -v \
|
|
|
|
--concurrency << parameters.concurrency >>
|
|
|
|
|
|
|
|
|
2019-07-01 20:17:00 +00:00
|
|
|
workflows:
|
|
|
|
version: 2
|
|
|
|
ci:
|
|
|
|
jobs:
|
2019-07-08 14:31:43 +00:00
|
|
|
- lint:
|
2019-07-05 11:21:54 +00:00
|
|
|
golangci-lint-version: 1.17.1
|
2019-07-08 14:31:43 +00:00
|
|
|
- test:
|
2019-07-01 20:38:17 +00:00
|
|
|
executor: go/circleci-golang
|
2019-07-02 09:42:22 +00:00
|
|
|
codecov-upload: true
|
2019-07-02 09:19:48 +00:00
|
|
|
- mod-tidy-check
|