Skip to content

Commit

Permalink
[CALCITE-6359] Update GitHub Actions workflows to use docker compose v2
Browse files Browse the repository at this point in the history
  • Loading branch information
F21 committed Apr 10, 2024
1 parent 4ce1e16 commit e7c1f0c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ jobs:
working-directory: ./druid-dataset
run: |
chmod -R 777 storage
docker-compose up -d
docker compose up -d
- name: 'Wait Druid nodes to startup'
run: |
until docker logs coordinator | grep "Successfully started lifecycle \[module\]"; do sleep 1s; done
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-non-release-website-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Build site
working-directory: site
run: |
docker-compose run -e JEKYLL_UID=$(id -u) -e JEKYLL_GID=$(id -g) build-site
docker compose run -e JEKYLL_UID=$(id -u) -e JEKYLL_GID=$(id -g) build-site
- name: Push site
working-directory: site/target
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-website-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ jobs:
- name: Build site
working-directory: site
run: |
docker-compose run -e JEKYLL_UID=$(id -u) -e JEKYLL_GID=$(id -g) build-site
docker compose run -e JEKYLL_UID=$(id -u) -e JEKYLL_GID=$(id -g) build-site
- name: Build javadoc
working-directory: site
run: |
docker-compose run generate-javadoc
docker compose run generate-javadoc
- name: Push site
working-directory: site/target
env:
Expand Down

0 comments on commit e7c1f0c

Please sign in to comment.