diff --git a/.github/workflows/unit_test_report.yaml b/.github/workflows/unit_test_report.yaml index f9fe149530c8d..667eee0a68527 100644 --- a/.github/workflows/unit_test_report.yaml +++ b/.github/workflows/unit_test_report.yaml @@ -116,7 +116,24 @@ jobs: # Commit committer date in ISO 8601 format. # Example: 2021-03-12T16:00:28Z run: | + # Unit test results are archived on the following format: + # + # unit-test-results/ + # ├── android-arm + # │ ├── + # │ │ └── + # │ └── TAGS + # ├── linux-x64x11 + # │ ├── + # │ │ └── + # │ └── TAGS + # ├── raspi-2 + # │ ├── + # │ │ └── + # │ └── TAGS + # etc. + # Loop over each platform, extract the tags and upload xml results. for dir in unit-test-results/*/; do echo "Uploading $dir test report"