From bc35a737c0534ad6bc5d5a5e58ef34feff656f0f Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Wed, 21 Apr 2021 10:22:34 -0700 Subject: [PATCH] remove codecov from repo (#10955) --- .circleci/config.yml | 7 ------- README.md | 7 +++---- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 47e5929fd..e2e8c817b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,5 @@ orbs: win: circleci/windows@1.0.0 - codecov: codecov/codecov@1.0.5 version: 2.1 @@ -64,8 +63,6 @@ jobs: steps: - checkout - run: TESTARGS="-coverprofile=coverage.txt -covermode=atomic" make ci - - codecov/upload: - file: coverage.txt test-darwin: executor: darwin working_directory: ~/go/github.com/hashicorp/packer @@ -73,8 +70,6 @@ jobs: - install-go-run-tests-unix: GOOS: darwin GOVERSION: "1.16" - - codecov/upload: - file: coverage.txt test-windows: executor: name: win/vs2019 @@ -82,8 +77,6 @@ jobs: steps: - install-go-run-tests-windows: GOVERSION: "1.16" - - codecov/upload: - file: coverage.txt check-lint: executor: golang resource_class: xlarge diff --git a/README.md b/README.md index d20e35413..3bb3b1ad0 100644 --- a/README.md +++ b/README.md @@ -4,14 +4,13 @@ [![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) [![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]: https://app.circleci.com/pipelines/github/hashicorp/packer [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]: https://godoc.org/github.com/hashicorp/packer -[report-badge]: https://goreportcard.com/badge/github.com/hashicorp/packer +[godoc]: https://godoc.org/github.com/hashicorp/packer +[report-badge]: https://goreportcard.com/badge/github.com/hashicorp/packer [report]: https://goreportcard.com/report/github.com/hashicorp/packer

@@ -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 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 `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` environment variables.