Skip to content

Fix docker compose concurrent issue #468

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

Merged
merged 3 commits into from
Jun 3, 2025
Merged
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
10 changes: 9 additions & 1 deletion .github/workflows/test_matrix.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: "test_matrix"

on: # yamllint disable-line rule:truthy
on: # yamllint disable-line rule:truthy

Check warning on line 4 in .github/workflows/test_matrix.yml

View workflow job for this annotation

GitHub Actions / Lint

[comments] too few spaces before comment

Check warning on line 4 in .github/workflows/test_matrix.yml

View workflow job for this annotation

GitHub Actions / Lint

[comments] too few spaces before comment
pull_request:
branches: main
push:
Expand Down Expand Up @@ -45,6 +45,14 @@
echo "TEST_SETTINGS_FILE=22_3" >> $GITHUB_ENV
echo "DBT_CH_TEST_CH_VERSION=22.3" >> $GITHUB_ENV

# a fix until docker compose v2.36.0 will be the default version in the github runner
- name: Install Docker Compose v2.36.0
run: |
sudo mkdir -p /usr/local/lib/docker/cli-plugins
sudo curl -L "https://github.com/docker/compose/releases/download/v2.36.0/docker-compose-linux-x86_64" -o /usr/local/lib/docker/cli-plugins/docker-compose
sudo chmod +x /usr/local/lib/docker/cli-plugins/docker-compose
docker compose version

- name: Run ClickHouse Cluster Containers
env:
PROJECT_ROOT: ${{ github.workspace }}/tests/integration
Expand Down
Loading