Skip to content

Commit

Permalink
ci: docker-compose -> docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
zmstone committed Aug 29, 2024
1 parent 7aaf589 commit 04fcbda
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
with:
version-type: strict
otp-version: ${{matrix.otp}}
rebar3-version: '3.17.0'
rebar3-version: '3.20.0'

# Check versions and syntax of app and appup
- name: Ensure version consistency
Expand All @@ -56,4 +56,4 @@ jobs:
- name: Run tests
run: |
./start-kafka.sh
make eunit || (docker-compose logs; false)
make eunit || (docker compose logs; false)
2 changes: 1 addition & 1 deletion start-kafka.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -eu

docker-compose up -d
docker compose up -d

n=0
while ! docker exec wolff-kafka-2 bash -c '/opt/kafka/bin/kafka-topics.sh --zookeeper zookeeper --list' | grep 'test-topic'; do
Expand Down

0 comments on commit 04fcbda

Please sign in to comment.