Skip to content

Commit

Permalink
Merge pull request #286 from hackingguy/fix/fix-build
Browse files Browse the repository at this point in the history
Fix the build by installing missing docker-compose
  • Loading branch information
guptalakshya92 authored Oct 17, 2024
2 parents e0069c3 + 3c444cd commit 0ac5e04
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ jobs:
with:
lein: "2.8.1"
- uses: actions/checkout@v2

- name: Install Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Run Tests on Kafka Cluster
run: ./bin/run_cluster_tests_in_ci.sh
env:
Expand All @@ -52,6 +55,10 @@ jobs:
with:
lein: "2.8.1"
- uses: actions/checkout@v2
- name: Install Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Calculate Coverage
run: make coverage
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Refer to [concepts](doc/CONCEPTS.md) to understand the concepts referred to in t

1. Install Clojure: `brew install clojure`
2. Install Leiningen: `brew install leiningen`
3. Run Docker Compose: `docker-compose up`. This starts:
3. Run docker-compose: `docker-compose up`. This starts:
- Kafka on localhost:9092
- ZooKeeper on localhost:2181
- RabbitMQ on localhost:5672
Expand Down

0 comments on commit 0ac5e04

Please sign in to comment.