Skip to content

Commit b18d140

Browse files
committed
Fix merge
1 parent 112b972 commit b18d140

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
with:
5555
name: result-linter-logs
5656
path: .github/artifacts/
57-
retention-days: 3
57+
retention-days: 1
5858

5959
unit-test:
6060
name: Unit Tests
@@ -76,7 +76,7 @@ jobs:
7676
with:
7777
name: result-unit-test-logs
7878
path: .github/artifacts/
79-
retention-days: 3
79+
retention-days: 1
8080

8181
component-test:
8282
name: Component Tests
@@ -94,7 +94,7 @@ jobs:
9494
with:
9595
name: result-component-test-logs
9696
path: .github/artifacts/
97-
retention-days: 3
97+
retention-days: 1
9898

9999
build-unsigned-snapshot:
100100
name: Build unsigned snapshot
@@ -200,7 +200,7 @@ jobs:
200200
with:
201201
name: result-integration-test-logs-${{ matrix.container.image }}-${{ matrix.container.version }}
202202
path: .github/artifacts/
203-
retention-days: 3
203+
retention-days: 1
204204

205205
official-oss-image-integration-tests:
206206
name: Integration Tests - Official OSS Images
@@ -253,15 +253,15 @@ jobs:
253253
with:
254254
name: official-oss-integration-test-logs-${{ matrix.container.image }}-${{ matrix.container.version }}
255255
path: /tmp/integration-test-logs/
256-
retention-days: 3
256+
retention-days: 1
257257

258258
- name: Upload oss integration test logs
259259
if: success() || failure()
260260
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
261261
with:
262262
name: result-oss-integration-tests-logs
263263
path: .github/artifacts/
264-
retention-days: 3
264+
retention-days: 1
265265

266266
official-plus-image-integration-tests:
267267
name: Integration Tests - Official Plus Images
@@ -328,16 +328,16 @@ jobs:
328328
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
329329
with:
330330
name: official-plus-integration-test-logs-${{ matrix.container.image }}-${{ matrix.container.version }}-${{ matrix.container.plus }}
331-
path: .github/artifacts/
332-
retention-days: 3
331+
path: /tmp/integration-test-logs/
332+
retention-days: 1
333333

334334
- name: Upload plus integration test logs
335335
if: success() || failure()
336336
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
337337
with:
338338
name: result-plus-integration-tests-logs
339-
path: /tmp/plus-integration-tests-logs.log
340-
retention-days: 3
339+
path: .github/artifacts/
340+
retention-days: 1
341341

342342
performance-test:
343343
name: Performance Tests
@@ -367,7 +367,7 @@ jobs:
367367
with:
368368
name: result-performance-test-logs
369369
path: .github/artifacts/
370-
retention-days: 3
370+
retention-days: 1
371371

372372
build-signed-snapshot:
373373
name: Build signed snapshot
@@ -459,6 +459,7 @@ jobs:
459459
needs: [ lint, unit-test, component-test, performance-test, integration-tests, official-plus-image-integration-tests, official-oss-image-integration-tests ]
460460
steps:
461461
- name: Merge Artifacts
462+
if: success() || failure()
462463
uses: actions/upload-artifact/merge@v4
463464
with:
464465
name: ci-test-workflow-logs

0 commit comments

Comments
 (0)