From 38d288797191f19bdcb07edb45f863cde9801d63 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Thu, 29 Oct 2020 10:29:09 +0700 Subject: [PATCH] disable CircleCI --- .circleci/config.yml | 48 -------------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index fcdb5f4..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,48 +0,0 @@ -version: 2.1 - -executors: - # Whenever the Go version is updated here, .travis.yml and .promu.yml - # should also be updated. - golang: - docker: - - image: circleci/golang:1.14 - -jobs: - test: - executor: golang - working_directory: /go/src/github.com/marten-seemann/qpack - steps: - - checkout - - run: - name: "Setup build environment" - command: | - git submodule update --init --recursive - go get github.com/onsi/ginkgo/ginkgo - go get github.com/onsi/gomega - - run: - name: "Build infos" - command: go version - - run: - name: "Run unit tests" - command: ginkgo -race -cover -v -randomizeAllSpecs - - run: - name: "Run interop tests" - command: ginkgo -race -v -randomizeAllSpecs -trace integrationtests/interop - - run: - name: "Run self integration tests" - command: - for i in {1..25}; do - ginkgo -race -v -randomizeAllSpecs -trace integrationtests/self; - done - - run: - name: "Upload coverage report to Codecov" - when: on_success - command: | - cat `find . -name "*.coverprofile"` > coverage.txt - bash <(curl -s https://codecov.io/bash) -f coverage.txt - -workflows: - version: 2 - qpack: - jobs: - - test