Skip to content

Commit

Permalink
remove docker-compose install
Browse files Browse the repository at this point in the history
  • Loading branch information
dwelch-spike committed Jan 9, 2025
1 parent 0e92926 commit d28db0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/test-prism-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,6 @@ jobs:
pip install -r prism/requirements.txt
pip install -r tests/requirements.txt
# Install Docker Compose
- name: Install Docker Compose
run: |
curl -L "https://github.com/docker/compose/releases/download/$(curl -s https://api.github.com/repos/docker/compose/releases/latest | jq -r .tag_name)/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
docker-compose --version
# Write feature keys to config files for use by AVS and Aerospike
- name: Write feature keys
working-directory: docker
Expand All @@ -58,7 +51,7 @@ jobs:
- name: Start AVS Server
working-directory: docker
run: |
docker-compose -f docker-compose.yaml up -d
docker compose -f docker-compose.yaml up -d
# Wait for the AVS Docker Container to be Healthy
- name: Wait for Docker Container to Be Healthy
Expand Down
9 changes: 1 addition & 8 deletions .github/workflows/test-quote-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,6 @@ jobs:
pip install -r quote-search/requirements.txt
pip install -r tests/requirements.txt
# Install Docker Compose
- name: Install Docker Compose
run: |
curl -L "https://github.com/docker/compose/releases/download/$(curl -s https://api.github.com/repos/docker/compose/releases/latest | jq -r .tag_name)/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
docker-compose --version
# Write feature keys to config files for use by AVS and Aerospike
- name: Write feature keys
working-directory: docker
Expand All @@ -58,7 +51,7 @@ jobs:
- name: Start AVS Server
working-directory: docker
run: |
docker-compose -f docker-compose.yaml up -d
docker compose -f docker-compose.yaml up -d
# Wait for the AVS Docker Container to be Healthy
- name: Wait for Docker Container to Be Healthy
Expand Down

0 comments on commit d28db0b

Please sign in to comment.