Skip to content
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
5 changes: 3 additions & 2 deletions .github/workflows/clickhouse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ jobs:
# Keep in sync with dev/docker-compose.yml.
# .github/ubuntu/ch-versions --lts --latest-stable --earliest 23 --prefix ' - ' | pbcopy
ch:
- 26.3.1.896-lts
- 25.8.20.4-lts
- 26.5.1.882-stable
- 26.3.11.36-lts
- 25.8.24.21-lts
- 25.3.14.14-lts
- 24.8.14.39-lts
- 24.3.18.7-lts
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ clang-tidy: compile_commands.json
@chmod +x $@

debian-install-lint:
@curl -SsLo /tmp/pre-commit.pyz https://github.com/pre-commit/pre-commit/releases/download/v4.5.1/pre-commit-4.5.1.pyz
@curl -SsLo /tmp/pre-commit.pyz https://github.com/pre-commit/pre-commit/releases/download/v4.6.0/pre-commit-4.6.0.pyz
@printf "#!/bin/sh\npython3 /tmp/pre-commit.pyz \"\$$@\"\n" > /usr/local/bin/pre-commit
@chmod +x /usr/local/bin/pre-commit

Expand Down
22 changes: 20 additions & 2 deletions dev/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,32 @@ volumes:
config:

services:
ch_26_5:
image: pgxn/pgxn-tools
container_name: ch_26_5
platform: linux/amd64
stdin_open: true
stop_grace_period: 10ms
environment:
CH_RELEASE: 26.5.1.882-stable
working_dir: /work
volumes:
- ..:/work
command: >
/bin/sh -c '
.github/ubuntu/clickhouse.sh
pg-start 18 libcurl4-openssl-dev uuid-dev
printf "ClickHouse $$CH_RELEASE and Postgres 18 started"
tail -f /dev/null
'
ch_26_3:
image: pgxn/pgxn-tools
container_name: ch_26_3
platform: linux/amd64
stdin_open: true
stop_grace_period: 10ms
environment:
CH_RELEASE: 26.3.1.896-lts
CH_RELEASE: 26.3.11.36-lts
working_dir: /work
volumes:
- ..:/work
Expand All @@ -38,7 +56,7 @@ services:
stdin_open: true
stop_grace_period: 10ms
environment:
CH_RELEASE: 25.8.20.4-lts
CH_RELEASE: 25.8.24.21-lts
working_dir: /work
volumes:
- ..:/work
Expand Down
Loading