Skip to content

Commit 62f93d1

Browse files
committed
added saving files build artifacts
1 parent c1f949b commit 62f93d1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,13 @@ jobs:
188188
- name: Test Java client
189189
run: |
190190
mvn --also-make --batch-mode --no-transfer-progress --projects ${{ matrix.project }} -DclickhouseVersion=${{ matrix.clickhouse }} -Dmaven.javadoc.skip=true verify
191+
- name: Save clickhouse-jdbc-all for tests
192+
uses: actions/upload-artifact@v4
193+
if: success()
194+
with:
195+
name: clickhouse-jdbc-archive
196+
path: $HOME/.m2/repository/com/clickhouse/clickhouse-jdbc/
197+
retention-days: 5
191198
- name: Upload test results
192199
uses: actions/upload-artifact@v4
193200
if: failure()
@@ -196,6 +203,7 @@ jobs:
196203
path: |
197204
**/target/failsafe-reports
198205
**/target/surefire-reports
206+
retention-days: 5
199207

200208
test-with-cloud:
201209
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)