|
54 | 54 | with: |
55 | 55 | name: result-linter-logs |
56 | 56 | path: .github/artifacts/ |
57 | | - retention-days: 3 |
| 57 | + retention-days: 1 |
58 | 58 |
|
59 | 59 | unit-test: |
60 | 60 | name: Unit Tests |
|
76 | 76 | with: |
77 | 77 | name: result-unit-test-logs |
78 | 78 | path: .github/artifacts/ |
79 | | - retention-days: 3 |
| 79 | + retention-days: 1 |
80 | 80 |
|
81 | 81 | component-test: |
82 | 82 | name: Component Tests |
|
94 | 94 | with: |
95 | 95 | name: result-component-test-logs |
96 | 96 | path: .github/artifacts/ |
97 | | - retention-days: 3 |
| 97 | + retention-days: 1 |
98 | 98 |
|
99 | 99 | build-unsigned-snapshot: |
100 | 100 | name: Build unsigned snapshot |
@@ -200,7 +200,7 @@ jobs: |
200 | 200 | with: |
201 | 201 | name: result-integration-test-logs-${{ matrix.container.image }}-${{ matrix.container.version }} |
202 | 202 | path: .github/artifacts/ |
203 | | - retention-days: 3 |
| 203 | + retention-days: 1 |
204 | 204 |
|
205 | 205 | official-oss-image-integration-tests: |
206 | 206 | name: Integration Tests - Official OSS Images |
@@ -253,15 +253,15 @@ jobs: |
253 | 253 | with: |
254 | 254 | name: official-oss-integration-test-logs-${{ matrix.container.image }}-${{ matrix.container.version }} |
255 | 255 | path: /tmp/integration-test-logs/ |
256 | | - retention-days: 3 |
| 256 | + retention-days: 1 |
257 | 257 |
|
258 | 258 | - name: Upload oss integration test logs |
259 | 259 | if: success() || failure() |
260 | 260 | uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 |
261 | 261 | with: |
262 | 262 | name: result-oss-integration-tests-logs |
263 | 263 | path: .github/artifacts/ |
264 | | - retention-days: 3 |
| 264 | + retention-days: 1 |
265 | 265 |
|
266 | 266 | official-plus-image-integration-tests: |
267 | 267 | name: Integration Tests - Official Plus Images |
@@ -328,16 +328,16 @@ jobs: |
328 | 328 | uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 |
329 | 329 | with: |
330 | 330 | 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 |
333 | 333 |
|
334 | 334 | - name: Upload plus integration test logs |
335 | 335 | if: success() || failure() |
336 | 336 | uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 |
337 | 337 | with: |
338 | 338 | 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 |
341 | 341 |
|
342 | 342 | performance-test: |
343 | 343 | name: Performance Tests |
@@ -367,7 +367,7 @@ jobs: |
367 | 367 | with: |
368 | 368 | name: result-performance-test-logs |
369 | 369 | path: .github/artifacts/ |
370 | | - retention-days: 3 |
| 370 | + retention-days: 1 |
371 | 371 |
|
372 | 372 | build-signed-snapshot: |
373 | 373 | name: Build signed snapshot |
@@ -459,6 +459,7 @@ jobs: |
459 | 459 | needs: [ lint, unit-test, component-test, performance-test, integration-tests, official-plus-image-integration-tests, official-oss-image-integration-tests ] |
460 | 460 | steps: |
461 | 461 | - name: Merge Artifacts |
| 462 | + if: success() || failure() |
462 | 463 | uses: actions/upload-artifact/merge@v4 |
463 | 464 | with: |
464 | 465 | name: ci-test-workflow-logs |
|
0 commit comments