From a345bb680968a750477d89cbfe18f82c6c5f5a89 Mon Sep 17 00:00:00 2001 From: Alexander Alderman Webb Date: Fri, 13 Feb 2026 10:10:57 +0100 Subject: [PATCH 1/2] ci: Replace action-clickhouse-in-ci --- .github/workflows/test-integrations-dbs.yml | 2 +- scripts/run-clickhouse.sh | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 scripts/run-clickhouse.sh 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 100644 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 From e4bcd58aa97303cc33de028cd46b829056b86941 Mon Sep 17 00:00:00 2001 From: Alexander Alderman Webb Date: Fri, 13 Feb 2026 10:12:51 +0100 Subject: [PATCH 2/2] update perms --- scripts/run-clickhouse.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 scripts/run-clickhouse.sh diff --git a/scripts/run-clickhouse.sh b/scripts/run-clickhouse.sh old mode 100644 new mode 100755