diff --git a/drone/.drone.jsonnet b/drone/.drone.jsonnet index 49f9c6a3..2243948e 100644 --- a/drone/.drone.jsonnet +++ b/drone/.drone.jsonnet @@ -103,19 +103,6 @@ local build(go_version) = { }, }; -local coverage_report = { - name: 'codecov-report', - image: 'golang', - commands: ['curl -s https://codecov.io/bash | bash -s -- -t ${CODECOV_TOKEN}'], - detach: true, - environment: { - CODECOV_TOKEN: { - from_secret: 'codecov_token', - }, - }, - depends_on: ['coverage'], -}; - local test_ci_dockerfile = { name: 'test-ci-dockerfile', image: 'plugins/docker', @@ -140,7 +127,6 @@ local pipeline(go_version) = { steps: [ mod_download(go_version), coverage(go_version), - coverage_report, lint, build(go_version), test_ci_dockerfile, diff --git a/drone/.drone.yml b/drone/.drone.yml index def27d6a..466b2346 100644 --- a/drone/.drone.yml +++ b/drone/.drone.yml @@ -31,17 +31,6 @@ steps: depends_on: - mod-download -- name: codecov-report - image: golang - detach: true - commands: - - "curl -s https://codecov.io/bash | bash -s -- -t ${CODECOV_TOKEN}" - environment: - CODECOV_TOKEN: - from_secret: codecov_token - depends_on: - - coverage - - name: lint pull: always image: golangci/golangci-lint @@ -156,17 +145,6 @@ steps: depends_on: - mod-download -- name: codecov-report - image: golang - detach: true - commands: - - "curl -s https://codecov.io/bash | bash -s -- -t ${CODECOV_TOKEN}" - environment: - CODECOV_TOKEN: - from_secret: codecov_token - depends_on: - - coverage - - name: lint pull: always image: golangci/golangci-lint @@ -233,17 +211,6 @@ steps: depends_on: - mod-download -- name: codecov-report - image: golang - detach: true - commands: - - "curl -s https://codecov.io/bash | bash -s -- -t ${CODECOV_TOKEN}" - environment: - CODECOV_TOKEN: - from_secret: codecov_token - depends_on: - - coverage - - name: lint pull: always image: golangci/golangci-lint