From 5414d6ba3baaf0daa81f3e4a4842cb418a71d0c8 Mon Sep 17 00:00:00 2001 From: Oscar Vestlie Date: Tue, 18 Jul 2023 21:03:10 -0700 Subject: [PATCH] Explain folder structure in comment b/290997541 --- .github/workflows/unit_test_report.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) 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"