Skip to content

Commit

Permalink
chore: remove last drone remains (#1839)
Browse files Browse the repository at this point in the history
* chore: remove drone

* fix: cr suggestions

* fix: cr suggestions
  • Loading branch information
nrwiersma committed Feb 28, 2023
1 parent af82a7a commit 748aa4d
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
REDIS_SENTINEL_TEST_PASSWORD: sekret
PROTECTED_REDIS_TEST_ENDPOINT: localhost:6380
ATHENS_PROTECTED_REDIS_PASSWORD: AthensPass1
GA_PULL_REQUEST: ${{github.event.number}}
runs-on: ubuntu-latest
services:
mongo:
Expand Down
6 changes: 3 additions & 3 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,13 +302,13 @@ Go to the [create new release page](https://github.com/gomods/athens/releases/ne
- **Release Title** - Make sure the title is prefixed by the release number including the `v`. If you want to write something creative in the rest of the title, go for it!
- **Describe this release** - Make sure to write what features this release includes, and any notable bugfixes. Also, thank all the folks who contributed to the release. You can find that information in a link that looks like this: `https://github.com/gomods/athens/compare/$PREVIOUS_TAG...release-$CURRENT_TAG`. Substitute `$PREVIOUS_TAG` for the last semver and `$CURRENT_TAG` to the version in the new release branch

When you're done, press the "Publish Release" button. After you do, our [Drone](https://cloud.drone.io) job will do almost everything.
When you're done, press the "Publish Release" button. After you do, our Github Actions job will do almost everything.

Make sure the Drone CI/CD job finished, and check in Docker Hub to make sure the new release showed up in the [tags](https://hub.docker.com/r/gomods/athens/tags) section.
Make sure the Github Actions CI/CD job finished, and check in Docker Hub to make sure the new release showed up in the [tags](https://hub.docker.com/r/gomods/athens/tags) section.

## Finishing up

The Drone job will do everything except:
The Github Actions job will do everything except:

- Tweet out about the new release
- Update the helm chart in the `main` branch
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![Athens Banner](./docs/static/banner.png)

[![Build Status](https://cloud.drone.io/api/badges/gomods/athens/status.svg)](https://cloud.drone.io/gomods/athens)
[![Build Status](https://github.com/gomods/athens/actions/workflows/ci.yml/badge.svg)](https://github.com/gomods/athens/actions/workflows/ci.yml?query=branch%3Amain)
[![GoDoc](https://godoc.org/github.com/gomods/athens?status.svg)](https://godoc.org/github.com/gomods/athens)
[![Go Report Card](https://goreportcard.com/badge/github.com/gomods/athens)](https://goreportcard.com/report/github.com/gomods/athens)
[![codecov](https://codecov.io/gh/gomods/athens/branch/master/graph/badge.svg)](https://codecov.io/gh/gomods/athens)
Expand Down
2 changes: 1 addition & 1 deletion pkg/stash/with_azureblob_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
// and it will ensure that saving to modules at the same time
// is done synchronously so that only the first module gets saved.
func TestWithAzureBlob(t *testing.T) {
containerName := randomContainerName(os.Getenv("DRONE_PULL_REQUEST"))
containerName := randomContainerName(os.Getenv("GA_PULL_REQUEST"))
cfg := getAzureTestConfig(containerName)
if cfg == nil {
t.SkipNow()
Expand Down
2 changes: 1 addition & 1 deletion pkg/storage/azureblob/azureblob_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func (s *Storage) clear() error {

func getStorage(t testing.TB) *Storage {
t.Helper()
containerName := randomContainerName(os.Getenv("DRONE_PULL_REQUEST"))
containerName := randomContainerName(os.Getenv("GA_PULL_REQUEST"))
cfg := getTestConfig(containerName)
if cfg == nil {
t.SkipNow()
Expand Down
2 changes: 1 addition & 1 deletion pkg/storage/gcp/gcp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func (s *Storage) clear() error {

func getStorage(t testing.TB) *Storage {
t.Helper()
bucketName := randomBucketName(os.Getenv("DRONE_PULL_REQUEST"))
bucketName := randomBucketName(os.Getenv("GA_PULL_REQUEST"))
cfg := getTestConfig(bucketName)
if cfg == nil {
// Don't fail if there's no test config, so that these tests don't
Expand Down

0 comments on commit 748aa4d

Please sign in to comment.