We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7717b90 commit 4c0a138Copy full SHA for 4c0a138
.github/workflows/_windows_ut.yml
@@ -364,6 +364,11 @@ jobs:
364
cd ${{ github.workspace }}/ut_log
365
latest_dir=$(find . -type d -name "Inductor-XPU-UT-Data-${{ github.event.pull_request.number || github.sha }}-Windows-*" |sort -V |tail -n 1)
366
cd "${latest_dir}"
367
+ find "${{ github.workspace }}/ut_log" -type f \
368
+ \( -name "failures_*.log" -o \
369
+ -name "passed_*.log" -o \
370
+ -name "category_*.log" \) \
371
+ -exec mv {} ./ \; || true
372
373
# get skipped known issues
374
count=$(gh api --paginate "repos/${{ github.repository }}/issues?labels=skipped_windows" --jq 'length')
0 commit comments