Skip to content

Commit

Permalink
Merge branch 'master' into v4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
david-krentzlin committed Aug 15, 2024
2 parents 613108f + 2d92145 commit 8e1ef32
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
ruby-version: [3.3.0, 3.2.3, 3.1.4, 3.0.6]
ruby-version: [3.3.4, 3.2.5, 3.1.6]
redis-version: [4, 5]

steps:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,18 +149,18 @@ In addition, beetle ships with a cucumber feature to test the automatic redis fa
an integration test. For this you need a recent Go installation in order to compile the
beetle go binary. Just invoke `make` in the top level directory.

There are two ways to start the required test dependencies: using `docker-compose` or
There are two ways to start the required test dependencies: using `docker compose` or
starting the services manually.

### Testing with docker-compose
### Testing with docker compose

Open a separate terminal window and run

docker-compose pull
docker compose pull

followed by

docker-compose up
docker compose up

This will start mysql, two redis servers, two RabbitMQ instances and a single consul
development node.
Expand Down
2 changes: 0 additions & 2 deletions docker-compose-smoke-test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '2'

services:
redis1:
container_name: beetle-redis1
Expand Down
2 changes: 0 additions & 2 deletions docker-compose-smoke2-test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '2'

services:
redis1:
container_name: beetle-redis1
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '2'

services:
mysql:
container_name: beetle-mysql
Expand Down
2 changes: 1 addition & 1 deletion script/smoke
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

exec docker-compose -f docker-compose-smoke-test.yml $@
exec docker compose -f docker-compose-smoke-test.yml $@
2 changes: 1 addition & 1 deletion script/smoke2
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

exec docker-compose -f docker-compose-smoke2-test.yml $@
exec docker compose -f docker-compose-smoke2-test.yml $@

0 comments on commit 8e1ef32

Please sign in to comment.