File tree 1 file changed +11
-7
lines changed
1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -204,23 +204,27 @@ jobs:
204
204
205
205
- name : Upload failure-logs as artifacts
206
206
if : failure()
207
- uses : actions/upload-artifact@v3
207
+ uses : actions/upload-artifact@v4
208
208
with :
209
209
name : failure_logs_${{ env.RUN_UID }}
210
210
path : ${{ github.workspace }}/src/integration-tests/failure-logs
211
211
retention-days : 5
212
212
213
213
- name : Upload broker core dump as artifacts
214
214
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
220
224
221
225
- name : Upload broker executable as artifacts to debug the core
222
226
if : failure()
223
- uses : actions/upload-artifact@v3
227
+ uses : actions/upload-artifact@v4
224
228
with :
225
229
name : bmqbrkr.tsk
226
230
overwrite : true # broker binary is the same across all matrix runs
You can’t perform that action at this time.
0 commit comments