@@ -146,45 +146,6 @@ jobs:
146146 - name : Test compressed native image
147147 run : ./clickhouse-jdbc/target/clickhouse-jdbc-bin
148148
149- test-cli-client :
150- runs-on : ubuntu-latest
151- needs : compile
152- timeout-minutes : 10
153- name : CLI client + CH LTS
154- steps :
155- - name : Check out repository
156- uses : actions/checkout@v4
157- - name : Check out PR
158- run : |
159- git fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 \
160- origin pull/${{ github.event.inputs.pr }}/merge:merged-pr && git checkout merged-pr
161- if : github.event.inputs.pr != ''
162- - name : Install JDK 8 and Maven
163- uses : actions/setup-java@v4
164- with :
165- distribution : " temurin"
166- java-version : 8
167- cache : " maven"
168- - name : Install ClickHouse native command line
169- run : |
170- sudo apt-get update \
171- && sudo apt-get install -y apt-transport-https ca-certificates dirmngr \
172- && sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 8919F6BD2B48D754 \
173- && echo "deb https://packages.clickhouse.com/deb lts main" | sudo tee /etc/apt/sources.list.d/clickhouse.list \
174- && sudo apt-get update && sudo apt-get install -y clickhouse-client \
175- && clickhouse client --version
176- - name : Test CLI client
177- run : |
178- mvn --also-make --batch-mode --no-transfer-progress --projects clickhouse-cli-client -DclickhouseVersion=$PREFERRED_LTS_VERSION -Dj8 -DskipUTs verify
179- - name : Upload test results
180- uses : actions/upload-artifact@v4
181- if : failure()
182- with :
183- name : result ${{ github.job }}
184- path : |
185- **/target/failsafe-reports
186- **/target/surefire-reports
187-
188149 test-java-client :
189150 runs-on : ubuntu-latest
190151 needs : compile
@@ -235,7 +196,7 @@ jobs:
235196 CLICKHOUSE_CLOUD_HOST : ${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_HOST_SMT }}
236197 CLICKHOUSE_CLOUD_PASSWORD : ${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_PASSWORD_SMT }}
237198 run : |
238- mvn --also-make --batch-mode --no-transfer-progress --projects clickhouse-cli-client,clickhouse-grpc-client,clickhouse- http-client -DclickhouseVersion=${{ matrix.clickhouse }} verify
199+ mvn --also-make --batch-mode --no-transfer-progress --projects clickhouse-http-client -DclickhouseVersion=${{ matrix.clickhouse }} verify
239200 - name : Upload test results
240201 uses : actions/upload-artifact@v4
241202 if : failure()
@@ -314,7 +275,7 @@ jobs:
314275 matrix :
315276 clickhouse : ["23.8", "24.3", "24.6", "latest", "cloud"]
316277 # here http, http_client and apache_http_client represent different value of http_connection_provider
317- protocol : ["http", "http_client", "apache_http_client", "grpc" ]
278+ protocol : ["http", "http_client", "apache_http_client"]
318279 fail-fast : false
319280 timeout-minutes : 15
320281 name : JDBC driver + CH ${{ matrix.clickhouse }} (${{ matrix.protocol }})
@@ -353,7 +314,7 @@ jobs:
353314 </toolchains>
354315 EOF
355316 - name : Install Java client
356- run : mvn --also-make --batch-mode --no-transfer-progress --projects clickhouse-cli-client,clickhouse-grpc-client,clickhouse- http-client -DskipTests install
317+ run : mvn --also-make --batch-mode --no-transfer-progress --projects clickhouse-http-client -DskipTests install
357318 - name : Test JDBC driver
358319 env :
359320 CLICKHOUSE_CLOUD_HOST : ${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_HOST_SMT }}
@@ -469,7 +430,7 @@ jobs:
469430 java-version : 8
470431 cache : " maven"
471432 - name : Install Java client
472- run : mvn --also-make --batch-mode --no-transfer-progress --projects clickhouse-cli-client,clickhouse-grpc-client,clickhouse- http-client -Dj8 -DskipTests install
433+ run : mvn --also-make --batch-mode --no-transfer-progress --projects clickhouse-http-client -Dj8 -DskipTests install
473434 - name : Test JDBC and R2DBC drivers
474435 run : |
475436 mvn --batch-mode --no-transfer-progress --projects clickhouse-jdbc,clickhouse-r2dbc -DclickhouseVersion=$PREFERRED_LTS_VERSION \
0 commit comments