diff --git a/.github/workflows/test-integrations-dbs.yml b/.github/workflows/test-integrations-dbs.yml index b1dadb0ca5..ead14af29a 100644 --- a/.github/workflows/test-integrations-dbs.yml +++ b/.github/workflows/test-integrations-dbs.yml @@ -66,7 +66,7 @@ jobs: python-version: ${{ matrix.python-version }} allow-prereleases: true - name: "Setup ClickHouse Server" - uses: getsentry/action-clickhouse-in-ci@v1.6 + run: ./scripts/run-clickhouse.sh - name: Setup Test Env run: | pip install "coverage[toml]" tox diff --git a/scripts/run-clickhouse.sh b/scripts/run-clickhouse.sh new file mode 100755 index 0000000000..a2a888c36c --- /dev/null +++ b/scripts/run-clickhouse.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +docker run -d -e CLICKHOUSE_SKIP_USER_SETUP=1 -p 8123:8123 -p 9000:9000 --name clickhouse-test --ulimit nofile=262144:262144 --rm clickhouse + +sleep 10 + +echo "--- Running Containers ---" +docker ps + +echo "--- Details of running ClickHouse ---" +docker exec clickhouse-test clickhouse-client --query "SELECT * FROM system.build_options" || true \ No newline at end of file