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 50db25b commit 90bbeb2Copy full SHA for 90bbeb2
.github/workflows/_windows_ut.yml
@@ -366,6 +366,11 @@ jobs:
366
cd ${{ github.workspace }}/ut_log
367
latest_dir=$(find . -type d -name "Inductor-XPU-UT-Data-${{ github.event.pull_request.number || github.sha }}-Windows-*" |sort -V |tail -n 1)
368
cd "${latest_dir}"
369
+ find "${{ github.workspace }}/ut_log" -type f \
370
+ \( -name "failures_*.log" -o \
371
+ -name "passed_*.log" -o \
372
+ -name "category_*.log" \) \
373
+ -exec mv {} ./ \; || true
374
375
# get skipped known issues
376
count=$(gh api --paginate "repos/${{ github.repository }}/issues?labels=skipped_windows" --jq 'length')
0 commit comments