File tree 2 files changed +10
-1
lines changed
clickhouse-client/src/test/java/com/clickhouse/client/stream
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 42
42
- clickhouse : " 21.8"
43
43
protocol : grpc
44
44
fail-fast : false
45
+ timeout-minutes : 45
45
46
name : Build against ClickHouse ${{ matrix.clickhouse }} (${{ matrix.protocol }})
46
47
steps :
47
48
- name : Check out Git repository
90
91
- name : Build
91
92
run : |
92
93
mvn --batch-mode --update-snapshots -Drelease -DclickhouseVersion=${{ matrix.clickhouse }} -Dprotocol=${{ matrix.protocol }} verify
94
+ - name : Upload test results
95
+ uses : actions/upload-artifact@v2
96
+ if : failure()
97
+ with :
98
+ name : result ${{ github.job }}
99
+ path : |
100
+ **/target/failsafe-reports
101
+ **/target/surefire-reports
Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ public void testWriteBytes() throws Exception {
204
204
205
205
@ Test (groups = { "unit" })
206
206
public void testPipedStream () throws Exception {
207
- final int timeout = 10000 ;
207
+ final int timeout = 60000 ;
208
208
ExecutorService executor = Executors .newFixedThreadPool (2 );
209
209
for (int bufferSize = -1 ; bufferSize < 10 ; bufferSize ++) {
210
210
for (int queueLength = -1 ; queueLength < 10 ; queueLength ++) {
You can’t perform that action at this time.
0 commit comments