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 Oct 29, 2024
1 parent 67d2ed2 commit 235d129
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,6 @@ jobs:
restore-keys: |
${{ runner.os }}-dialyzer2-
- name: Set up Docker Compose
run: |
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
# Install Erlang
- name: Install Erlang/OTP
uses: erlef/setup-beam@v1
Expand All @@ -65,4 +60,4 @@ jobs:
run: |
export KAFKA_VERSION=${{ matrix.kafka }}
make test-env
make eunit || (cd scripts && docker-compose logs)
make eunit || (cd scripts && docker compose logs)
2 changes: 0 additions & 2 deletions scripts/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '2'

services:
zookeeper:
image: "zmstone/kafka:${KAFKA_VERSION}"
Expand Down
5 changes: 2 additions & 3 deletions scripts/setup-test-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export KAFKA_VERSION=$VERSION

TD="$(cd "$(dirname "$0")" && pwd)"

docker-compose -f $TD/docker-compose.yml down || true
docker-compose -f $TD/docker-compose.yml up -d
docker compose -f $TD/docker-compose.yml down || true
docker compose -f $TD/docker-compose.yml up -d

# give kafka some time
sleep 5
Expand Down Expand Up @@ -70,4 +70,3 @@ docker exec kafka-1 /opt/kafka/bin/kafka-consumer-groups.sh --bootstrap-server l
if [[ "$KAFKA_VERSION" != 0.9* ]] && [[ "$KAFKA_VERSION" != 0.10* ]]; then
docker exec kafka-1 /opt/kafka/bin/kafka-configs.sh --zookeeper localhost:2181 --alter --add-config 'SCRAM-SHA-256=[iterations=8192,password=ecila],SCRAM-SHA-512=[password=ecila]' --entity-type users --entity-name alice
fi

0 comments on commit 235d129

Please sign in to comment.