Skip to content

Commit

Permalink
ci: removing parallelism from job (#485)
Browse files Browse the repository at this point in the history
Removing parallelism from job as each container counts towards the concurrency limit.
Also, the performance increase was negligible.
  • Loading branch information
zepatrik committed Mar 12, 2021
1 parent 65822a4 commit 40563cc
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,27 +51,35 @@ jobs:
test-race:
docker:
- image: cimg/go:1.16
parallelism: 4
steps:
- checkout
- go/load-cache
- go/mod-download
- run: go mod tidy
- go/save-cache
- run: go test -tags sqlite -race -short -v $(go list ./... | circleci tests split)
- run: go test -tags sqlite -race -short -v ./...

validate:
docker:
- image: cimg/go:1.16-node
steps:
- checkout
- run: sudo npm i -g npm@7

- go/load-cache
- go/mod-download
- run: go mod tidy
- go/save-cache

- golangci/install
- golangci/lint

- nancy/install
- nancy/check

- goreleaser/install
- goreleaser/check

- prettier/install
- prettier/check
- prettier/install:
Expand Down

0 comments on commit 40563cc

Please sign in to comment.