From 01b59db35ebc555beaaad9512aaf791ff50245b1 Mon Sep 17 00:00:00 2001 From: Marko Date: Sat, 2 May 2020 22:22:49 +0200 Subject: [PATCH] ci: remove swagger check (#6123) --- .circleci/config.yml | 50 -------------------------------------------- 1 file changed, 50 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 921f556a8d..c48fe3b467 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,17 +1,11 @@ version: 2.1 executors: - golang: - docker: - - image: circleci/golang:1.14 docs: docker: - image: tendermintdev/docker-website-deployment environment: AWS_REGION: us-east-1 - protoc: - docker: - - image: tendermintdev/docker-protoc commands: make: @@ -49,54 +43,10 @@ jobs: name: "Upload docs to S3" command: make sync-docs - setup-dependencies: - executor: golang - steps: - - checkout - - restore_cache: - name: "Restore go modules cache" - keys: - - go-mod-v2-{{ checksum "go.sum" }} - - run: - name: Cache go modules - command: make go-mod-cache - - run: - name: Build - command: make build - - run: - name: Git garbage collection - command: git gc - - save_cache: - name: "Save go modules cache" - key: go-mod-v2-{{ checksum "go.sum" }} - paths: - - "/go/pkg/mod" - - save_cache: - name: "Save source code cache" - key: go-src-v1-{{ .Revision }} - paths: - - ".git" - - update-swagger-docs: - executor: golang - steps: - - make: - target: update-swagger-docs - description: "Check if statik.go is up-to-date" - workflows: version: 2 test-suite: jobs: - - update-swagger-docs: - requires: - - setup-dependencies - - setup-dependencies: - # This filter enables the job for tags - filters: - tags: - only: - - /^v.*/ - build-docs: context: docs-deployment-master filters: