Skip to content

Commit

Permalink
Drop Docker Layer Caching in CI
Browse files Browse the repository at this point in the history
As we don't have a CircleCI plan supporting that currently
  • Loading branch information
PirminTapken committed Dec 11, 2019
1 parent 77dc1b1 commit 6f7615d
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2
version: 2.1
jobs:
build:
docker:
Expand All @@ -7,9 +7,6 @@ jobs:

steps:
- checkout
- setup_remote_docker:
docker_layer_caching: true

- run:
name: install dependencies
command: go mod download
Expand All @@ -19,7 +16,7 @@ jobs:
command: go test -v ./...

- run:
name: gometalinter
name: Golang CI Lint
command: |
wget -O- -nv https://github.com/golangci/golangci-lint/releases/download/v1.21.0/golangci-lint-1.21.0-linux-amd64.tar.gz | tar -xvzO golangci-lint-1.21.0-linux-amd64/golangci-lint > golangci-lint && chmod +x golangci-lint
./golangci-lint
Expand Down

0 comments on commit 6f7615d

Please sign in to comment.