mirror of
https://github.com/gomods/athens
synced 2026-02-03 12:10:32 +00:00
chore: remove last drone remains (#1839)
* chore: remove drone * fix: cr suggestions * fix: cr suggestions
This commit is contained in:
@@ -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:
|
||||
|
||||
+3
-3
@@ -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
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||

|
||||
|
||||
[](https://cloud.drone.io/gomods/athens)
|
||||
[](https://github.com/gomods/athens/actions/workflows/ci.yml?query=branch%3Amain)
|
||||
[](https://godoc.org/github.com/gomods/athens)
|
||||
[](https://goreportcard.com/report/github.com/gomods/athens)
|
||||
[](https://codecov.io/gh/gomods/athens)
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user