Skip to content

Commit

Permalink
remove sandbox suffix to see if that is breaking github
Browse files Browse the repository at this point in the history
  • Loading branch information
brianlmoon committed Mar 22, 2024
1 parent f200e94 commit d28ebd8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
services:

# Label used to access the service container
memcached-sandbox:
memcached:
# Docker Hub image
image: memcached:latest
ports:
- 11211:11211

# Label used to access the service container
redis-sandbox:
redis:
# Docker Hub image
image: redis:7.2
# Set health checks to wait until redis has started
Expand Down
6 changes: 3 additions & 3 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ function _debug() {
// Check if we are running inside a docker container already
// If so, set the env vars correctly and don't run setup/teardown
if ('' == shell_exec('which docker')) {
$memcache_host = 'memcached-sandbox';
$redis_host = 'redis-sandbox';
$memcache_host = 'memcached';
$redis_host = 'redis';
} else {
$memcache_host = '127.0.0.1';
$redis_host = '127.0.0.1';
$redis_host = '127.0.0.1';

$start_sandbox = true;

Expand Down

0 comments on commit d28ebd8

Please sign in to comment.