Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0ce392c

Browse files
committedMar 14, 2025·
Try disable cores collection and just ls folder
Signed-off-by: Dmitrii Petukhov <[email protected]>
1 parent 02996ba commit 0ce392c

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed
 

‎.github/workflows/build.yaml

+11-7
Original file line numberDiff line numberDiff line change
@@ -204,23 +204,27 @@ jobs:
204204
205205
- name: Upload failure-logs as artifacts
206206
if: failure()
207-
uses: actions/upload-artifact@v3
207+
uses: actions/upload-artifact@v4
208208
with:
209209
name: failure_logs_${{ env.RUN_UID }}
210210
path: ${{ github.workspace }}/src/integration-tests/failure-logs
211211
retention-days: 5
212212

213213
- name: Upload broker core dump as artifacts
214214
if: failure()
215-
uses: actions/upload-artifact@v3
216-
with:
217-
name: core_dumps_${{ env.RUN_UID }}
218-
path: ${{ github.workspace }}/src/integration-tests/cores
219-
retention-days: 5
215+
run: |
216+
ls ${{ github.workspace }}/src/integration-tests/cores
217+
ls ${{ github.workspace }}/src/integration-tests/failure-logs
218+
219+
# uses: actions/upload-artifact@v4
220+
# with:
221+
# name: core_dumps_${{ env.RUN_UID }}
222+
# path: ${{ github.workspace }}/src/integration-tests/cores
223+
# retention-days: 5
220224

221225
- name: Upload broker executable as artifacts to debug the core
222226
if: failure()
223-
uses: actions/upload-artifact@v3
227+
uses: actions/upload-artifact@v4
224228
with:
225229
name: bmqbrkr.tsk
226230
overwrite: true # broker binary is the same across all matrix runs

0 commit comments

Comments
 (0)
Please sign in to comment.