File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ concurrency:
77 group : ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.event.number || github.sha }}
88 cancel-in-progress : true
99
10+ env :
11+ PREFERRED_LTS_VERSION : " 24.3"
12+
1013jobs :
1114 compile :
1215 runs-on : ubuntu-latest
5760 key : ${{ github.run_id }}-ch-artifacts
5861 - name : Run Examples
5962 run : |
60- docker run -d --name demo-service-db -e CLICKHOUSE_USER=default -e CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT=1 -e CLICKHOUSE_PASSWORD=secret -p 8123:8123 clickhouse/clickhouse-server:24.8
63+ docker run -d --name demo-service-db -e CLICKHOUSE_USER=default -e CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT=1 -e CLICKHOUSE_PASSWORD=secret -p 8123:8123 clickhouse/clickhouse-server:${$PREFERRED_LTS_VERSION}
6164 cd examples/jdbc
6265 mvn --batch-mode --no-transfer-progress --show-version clean compile
6366 mvn exec:java -Dexec.mainClass="com.clickhouse.examples.jdbc.Basic" -DchPassword=secret -DfailOnError=true
You can’t perform that action at this time.
0 commit comments