remove codecov from repo (#10955)

pull/10957/head
Megan Marsh 5 years ago committed by GitHub
parent b5666b84cd
commit bc35a737c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,6 +1,5 @@
orbs: orbs:
win: circleci/windows@1.0.0 win: circleci/windows@1.0.0
codecov: codecov/codecov@1.0.5
version: 2.1 version: 2.1
@ -64,8 +63,6 @@ jobs:
steps: steps:
- checkout - checkout
- run: TESTARGS="-coverprofile=coverage.txt -covermode=atomic" make ci - run: TESTARGS="-coverprofile=coverage.txt -covermode=atomic" make ci
- codecov/upload:
file: coverage.txt
test-darwin: test-darwin:
executor: darwin executor: darwin
working_directory: ~/go/github.com/hashicorp/packer working_directory: ~/go/github.com/hashicorp/packer
@ -73,8 +70,6 @@ jobs:
- install-go-run-tests-unix: - install-go-run-tests-unix:
GOOS: darwin GOOS: darwin
GOVERSION: "1.16" GOVERSION: "1.16"
- codecov/upload:
file: coverage.txt
test-windows: test-windows:
executor: executor:
name: win/vs2019 name: win/vs2019
@ -82,8 +77,6 @@ jobs:
steps: steps:
- install-go-run-tests-windows: - install-go-run-tests-windows:
GOVERSION: "1.16" GOVERSION: "1.16"
- codecov/upload:
file: coverage.txt
check-lint: check-lint:
executor: golang executor: golang
resource_class: xlarge resource_class: xlarge

@ -4,14 +4,13 @@
[![Discuss](https://img.shields.io/badge/discuss-packer-3d89ff?style=flat)](https://discuss.hashicorp.com/c/packer) [![Discuss](https://img.shields.io/badge/discuss-packer-3d89ff?style=flat)](https://discuss.hashicorp.com/c/packer)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/hashicorp/packer)](https://pkg.go.dev/github.com/hashicorp/packer) [![PkgGoDev](https://pkg.go.dev/badge/github.com/hashicorp/packer)](https://pkg.go.dev/github.com/hashicorp/packer)
[![GoReportCard][report-badge]][report] [![GoReportCard][report-badge]][report]
[![codecov](https://codecov.io/gh/hashicorp/packer/branch/master/graph/badge.svg)](https://codecov.io/gh/hashicorp/packer)
[circleci-badge]: https://circleci.com/gh/hashicorp/packer.svg?style=svg [circleci-badge]: https://circleci.com/gh/hashicorp/packer.svg?style=svg
[circleci]: https://app.circleci.com/pipelines/github/hashicorp/packer [circleci]: https://app.circleci.com/pipelines/github/hashicorp/packer
[appveyor-badge]: https://ci.appveyor.com/api/projects/status/miavlgnp989e5obc/branch/master?svg=true [appveyor-badge]: https://ci.appveyor.com/api/projects/status/miavlgnp989e5obc/branch/master?svg=true
[godoc-badge]: https://godoc.org/github.com/hashicorp/packer?status.svg [godoc-badge]: https://godoc.org/github.com/hashicorp/packer?status.svg
[godoc]: https://godoc.org/github.com/hashicorp/packer [godoc]: https://godoc.org/github.com/hashicorp/packer
[report-badge]: https://goreportcard.com/badge/github.com/hashicorp/packer [report-badge]: https://goreportcard.com/badge/github.com/hashicorp/packer
[report]: https://goreportcard.com/report/github.com/hashicorp/packer [report]: https://goreportcard.com/report/github.com/hashicorp/packer
<p align="center" style="text-align:center;"> <p align="center" style="text-align:center;">
@ -48,7 +47,7 @@ yourself](https://github.com/hashicorp/packer/blob/master/.github/CONTRIBUTING.m
After Packer is installed, create your first template, which tells Packer After Packer is installed, create your first template, which tells Packer
what platforms to build images for and how you want to build them. In our what platforms to build images for and how you want to build them. In our
case, we'll create a simple AMI that has Redis pre-installed. case, we'll create a simple AMI that has Redis pre-installed.
Save this file as `quick-start.pkr.hcl`. Export your AWS credentials as the Save this file as `quick-start.pkr.hcl`. Export your AWS credentials as the
`AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` environment variables. `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` environment variables.

Loading…
Cancel
Save