Skip to content

Commit b475e49

Browse files
authored
Update after move to ddev org (#4)
1 parent 4f78165 commit b475e49

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ defaults:
1919
shell: bash
2020

2121
env:
22-
NIGHTLY_DDEV_PR_URL: "https://nightly.link/drud/ddev/actions/runs/1720215802/ddev-linux-amd64.zip"
22+
NIGHTLY_DDEV_PR_URL: "https://nightly.link/ddev/ddev/actions/runs/1720215802/ddev-linux-amd64.zip"
2323
# Allow ddev get to use a github token to prevent rate limiting by tests
2424
DDEV_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525

@@ -47,15 +47,15 @@ jobs:
4747
4848
- name: Use ddev stable
4949
if: matrix.ddev_version == 'stable'
50-
run: brew install drud/ddev/ddev
50+
run: brew install ddev/ddev/ddev
5151

5252
- name: Use ddev edge
5353
if: matrix.ddev_version == 'edge'
54-
run: brew install drud/ddev-edge/ddev
54+
run: brew install ddev/ddev-edge/ddev
5555

5656
- name: Use ddev HEAD
5757
if: matrix.ddev_version == 'HEAD'
58-
run: brew install --HEAD drud/ddev/ddev
58+
run: brew install --HEAD ddev/ddev/ddev
5959

6060
- name: Use ddev PR
6161
if: matrix.ddev_version == 'PR'

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
[![tests](https://github.com/drud/ddev-memcached/actions/workflows/tests.yml/badge.svg)](https://github.com/drud/ddev-memcached/actions/workflows/tests.yml) ![project is maintained](https://img.shields.io/maintenance/yes/2024.svg)
1+
[![tests](https://github.com/ddev/ddev-memcached/actions/workflows/tests.yml/badge.svg)](https://github.com/ddev/ddev-memcached/actions/workflows/tests.yml) ![project is maintained](https://img.shields.io/maintenance/yes/2024.svg)
22

33
## What is this?
44

5-
This repository allows you to quickly install memcached into a [Ddev](https://ddev.readthedocs.io) project using just `ddev get drud/ddev-memcached`.
5+
This repository allows you to quickly install memcached into a [Ddev](https://ddev.readthedocs.io) project using just `ddev get ddev/ddev-memcached`.
66

77
## Installation
88

9-
1.`ddev get drud/ddev-memcached && ddev restart`
9+
1.`ddev get ddev/ddev-memcached && ddev restart`
1010
5. `ddev restart`
1111

1212
## Explanation

tests/test.bats

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ teardown() {
3131
@test "install from release" {
3232
set -eu -o pipefail
3333
cd ${TESTDIR} || ( printf "unable to cd to ${TESTDIR}\n" && exit 1 )
34-
echo "# ddev get drud/ddev-elasticsearch with project ${PROJNAME} in ${TESTDIR} ($(pwd))" >&3
35-
ddev get drud/ddev-elasticsearch
34+
echo "# ddev get ddev/ddev-elasticsearch with project ${PROJNAME} in ${TESTDIR} ($(pwd))" >&3
35+
ddev get ddev/ddev-memcached
3636
ddev restart
37-
ddev exec "curl -s elasticsearch:9200" | grep "${PROJNAME}-elasticsearch"
37+
v=$(ddev exec 'printf "version\nquit\nquit\n" | nc memcached 11211')
38+
[[ "${v}" = VERSION* ]]
3839
}

0 commit comments

Comments
 (0)