File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 8383 working-directory : ${{ env.TESTS_DIR }}
8484 run : docker compose -f docker-compose-trino.yml up -d
8585
86+ - name : Start Clickhouse
87+ if : inputs.warehouse-type == 'clickhouse'
88+ working-directory : ${{ env.TESTS_DIR }}
89+ run : docker compose up -d clickhouse
90+
8691 - name : Setup Python
8792 uses : actions/setup-python@v4
8893 with :
Original file line number Diff line number Diff line change @@ -12,6 +12,23 @@ services:
1212 volumes :
1313 - postgres:/var/lib/postgresql/data
1414
15+ clickhouse :
16+ image : clickhouse/clickhouse-server:latest
17+ container_name : clickhouse
18+ ports :
19+ - " 8123:8123" # HTTP interface
20+ - " 9000:9000" # Native TCP interface
21+ volumes :
22+ - ./clickhouse-data:/var/lib/clickhouse
23+ environment :
24+ CLICKHOUSE_DB : default
25+ CLICKHOUSE_USER : default
26+ CLICKHOUSE_PASSWORD : " default"
27+ ulimits :
28+ nofile :
29+ soft : 262144
30+ hard : 262144
31+
1532 pgadmin :
1633 image : dpage/pgadmin4
1734 ports :
You can’t perform that action at this time.
0 commit comments