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}
|
2019-07-08 14:31:43 +00:00
|
|
|
prepare:
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: git submodule sync
|
|
|
|
- run: git submodule update --init
|
2019-09-06 23:27:16 +00:00
|
|
|
download-params:
|
|
|
|
steps:
|
|
|
|
- restore_cache:
|
|
|
|
name: Restore parameters cache
|
|
|
|
keys:
|
|
|
|
- 'v1-lotus-params-{{ checksum build/proof-params/parameters.json }}'
|
|
|
|
paths:
|
|
|
|
- /var/tmp/filecoin-proof-parameters/
|
|
|
|
- build/.params-1024
|
|
|
|
- run:
|
|
|
|
command: GO111MODULE=on go get github.com/ipfs/ipget@c0cbd7d9d1925965a5aa0895d5ff32dbdb4a009e
|
|
|
|
working_directory: "~"
|
|
|
|
- run: make build/.params-1024
|
|
|
|
- save_cache:
|
|
|
|
name: Save parameters cache
|
|
|
|
key: 'v1-lotus-params-{{ checksum build/proof-params/parameters.json }}'
|
|
|
|
paths:
|
|
|
|
- /var/tmp/filecoin-proof-parameters/
|
|
|
|
- build/.params-1024
|
2019-07-08 14:31:43 +00:00
|
|
|
|
|
|
|
|
2019-07-02 09:19:48 +00:00
|
|
|
jobs:
|
|
|
|
mod-tidy-check:
|
|
|
|
executor: go/circleci-golang
|
|
|
|
steps:
|
2019-07-08 14:47:19 +00:00
|
|
|
- install-deps
|
|
|
|
- prepare
|
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
|
2019-07-08 14:55:01 +00:00
|
|
|
default: go/circleci-golang
|
2019-07-08 14:31:43 +00:00
|
|
|
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-08-29 19:08:12 +00:00
|
|
|
- run: echo 'export PATH=$HOME/.cargo/bin:$PATH' >> $BASH_ENV
|
2019-09-06 23:27:16 +00:00
|
|
|
- download-params
|
2019-08-29 19:08:12 +00:00
|
|
|
- run:
|
|
|
|
command: make deps
|
|
|
|
no_output_timeout: 30m
|
2019-07-08 14:56:06 +00:00
|
|
|
- go/install-gotestsum:
|
2019-07-08 14:55:01 +00:00
|
|
|
gobin: $HOME/.local/bin
|
2019-07-08 14:31:43 +00:00
|
|
|
- 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)
|
|
|
|
|
2019-07-10 13:35:00 +00:00
|
|
|
lint: &lint
|
2019-07-08 14:31:43 +00:00
|
|
|
description: |
|
|
|
|
Run golangci-lint.
|
|
|
|
parameters:
|
|
|
|
executor:
|
|
|
|
type: executor
|
2019-07-08 14:55:01 +00:00
|
|
|
default: go/circleci-golang
|
2019-07-08 14:31:43 +00:00
|
|
|
golangci-lint-version:
|
|
|
|
type: string
|
2019-07-08 15:36:24 +00:00
|
|
|
default: 1.17.1
|
2019-07-08 14:31:43 +00:00
|
|
|
concurrency:
|
|
|
|
type: string
|
|
|
|
default: '2'
|
|
|
|
description: |
|
|
|
|
Concurrency used to run linters. Defaults to 2 because NumCPU is not
|
|
|
|
aware of container CPU limits.
|
2019-07-08 15:36:24 +00:00
|
|
|
args:
|
|
|
|
type: string
|
|
|
|
default: ''
|
|
|
|
description: |
|
|
|
|
Arguments to pass to golangci-lint
|
2019-07-08 14:31:43 +00:00
|
|
|
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-09-06 23:27:16 +00:00
|
|
|
- download-params
|
2019-08-29 19:08:12 +00:00
|
|
|
- run:
|
2019-08-30 11:26:20 +00:00
|
|
|
command: make deps
|
|
|
|
no_output_timeout: 30m
|
2019-07-08 14:31:43 +00:00
|
|
|
- go/install-golangci-lint:
|
2019-07-08 14:55:01 +00:00
|
|
|
gobin: $HOME/.local/bin
|
2019-07-08 14:31:43 +00:00
|
|
|
version: << parameters.golangci-lint-version >>
|
|
|
|
- run:
|
|
|
|
name: Lint
|
|
|
|
command: |
|
2019-08-06 12:16:49 +00:00
|
|
|
$HOME/.local/bin/golangci-lint run -v \
|
2019-07-08 15:36:24 +00:00
|
|
|
--concurrency << parameters.concurrency >> << parameters.args >>
|
2019-07-10 13:35:00 +00:00
|
|
|
lint-changes:
|
|
|
|
<<: *lint
|
|
|
|
|
|
|
|
lint-all:
|
|
|
|
<<: *lint
|
2019-07-08 14:31:43 +00:00
|
|
|
|
|
|
|
|
2019-07-01 20:17:00 +00:00
|
|
|
workflows:
|
|
|
|
version: 2
|
|
|
|
ci:
|
|
|
|
jobs:
|
2019-07-10 13:35:00 +00:00
|
|
|
- lint-changes:
|
|
|
|
args: "--new-from-rev origin/master"
|
2019-07-08 14:31:43 +00:00
|
|
|
- test:
|
2019-07-02 09:42:22 +00:00
|
|
|
codecov-upload: true
|
2019-07-02 09:19:48 +00:00
|
|
|
- mod-tidy-check
|