Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Docker compose v2 command in github actions #4822

Merged
merged 2 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-delta-ship.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
sbt -Dsbt.color=always -Dsbt.supershell=false \
app/Docker/publishLocal
- name: Start services
run: docker-compose -f tests/docker/docker-compose.yml up -d
run: docker compose -f tests/docker/docker-compose.yml up -d
- name: Waiting for Delta to start
run: |
URL="http://localhost:8080/v1/version"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
app/Docker/publishLocal \
storage/Docker/publishLocal
- name: Start services
run: docker-compose -f tests/docker/docker-compose.yml up -d
run: docker compose -f tests/docker/docker-compose.yml up -d
- name: Waiting for Delta to start
run: |
URL="http://localhost:8080/v1/version"
Expand All @@ -43,5 +43,5 @@ jobs:
- name: Stop & clean Docker
if: ${{ always() }}
run: |
docker-compose -f tests/docker/docker-compose.yml down --rmi "local" --volumes
docker compose -f tests/docker/docker-compose.yml down --rmi "local" --volumes
docker system prune --force --volumes
4 changes: 2 additions & 2 deletions tests/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Nexus integration tests

Starts the delta ecosystem with docker-compose and run tests on it
Starts the delta ecosystem with docker compose and run tests on it

First, run:
```shell
docker-compose -f docker/docker-compose.yml up -d
docker compose -f docker/docker-compose.yml up -d
```

Add the following local domains to your `/etc/hosts` file for `S3StorageAccessSpec`:
Expand Down