From d254270c40c8f6c2a01c4a6a2d45831e3d9a32e3 Mon Sep 17 00:00:00 2001 From: tok-kkk Date: Tue, 7 Jan 2020 11:47:39 +1100 Subject: [PATCH] remove circleCI configs --- .circleci/config.yml | 47 -------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index f81ce17..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,47 +0,0 @@ -# Golang CircleCI 2.0 configuration file -# -# Check https://circleci.com/docs/2.0/language-go/ for more details -version: 2.1 - -_defaults: &defaults - docker: - - image: circleci/golang:1.11 - -jobs: - build: - <<: *defaults - steps: - - checkout - - restore_cache: - key: go-mod-v3-{{ checksum "go.sum" }} - - run: - name: Building and testing - command: | - go get -u golang.org/x/lint/golint - go get -u golang.org/x/crypto/... - go get -u github.com/onsi/ginkgo/ginkgo - go get -u github.com/onsi/gomega/... - go get -u github.com/loongy/covermerge - go get -u github.com/mattn/goveralls - go vet ./... - golint ./... - CI=true /go/bin/ginkgo -v --race --cover --coverprofile coverprofile.out ./... - /go/bin/covermerge \ - codec/coverprofile.out \ - cache/lru/coverprofile.out \ - cache/ttl/coverprofile.out \ - leveldb/coverprofile.out \ - badgerdb/coverprofile.out \ - db/coverprofile.out \ - memdb/coverprofile.out > coverprofile.out - /go/bin/goveralls -coverprofile=coverprofile.out -service=circleci -repotoken $COVERALLS_REPO_TOKEN - - save_cache: - key: go-mod-v3-{{ checksum "go.sum" }} - paths: - - "~/go" - -workflows: - version: 2.1 - build: - jobs: - - build