-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Fix Workflow summaries for ARM workflows #12707
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Test Results - Preflight, Unit21 595 tests 19 940 ✅ 6m 13s ⏱️ Results for commit 1615279. ♻️ This comment has been updated with latest results. |
Test Results (MA/MR) - Preflight, Unit21 595 tests 19 940 ✅ 6m 30s ⏱️ Results for commit 1615279. ♻️ This comment has been updated with latest results. |
Test Results (amd64, MA/MR) - Acceptance7 tests 5 ✅ 3m 8s ⏱️ Results for commit 1615279. ♻️ This comment has been updated with latest results. |
Test Results (amd64) - Acceptance7 tests 5 ✅ 3m 7s ⏱️ Results for commit 1615279. ♻️ This comment has been updated with latest results. |
Test Results (MA/MR) - Alternative Providers986 tests 568 ✅ 22m 43s ⏱️ Results for commit 1615279. ♻️ This comment has been updated with latest results. |
Test Results - Alternative Providers986 tests 568 ✅ 22m 44s ⏱️ Results for commit 1615279. ♻️ This comment has been updated with latest results. |
Test Results (amd64, MA/MR) - Integration, Bootstrap 5 files 5 suites 2h 21m 38s ⏱️ Results for commit 1615279. ♻️ This comment has been updated with latest results. |
Test Results (amd64) - Integration, Bootstrap 5 files 5 suites 2h 22m 8s ⏱️ Results for commit 1615279. ♻️ This comment has been updated with latest results. |
e64b5da
to
4b413b7
Compare
4b413b7
to
bed4e6f
Compare
bed4e6f
to
1615279
Compare
Test Results (arm64) - Acceptance7 tests 5 ✅ 3m 18s ⏱️ Results for commit 1615279. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🚀
Motivation
While looking at a failed ARM workflow run, I've noticed that arm64 workflow summaries don't work. The reason is a wrong determination of the architecture that is to be reported.
For simplicity, the matrix for determining the architecture remained the same between workflow run and publishing. The error happened in choosing only AMD to actually run the publishing job. To determine the architecture that should be published, however, we checked the architecture of the runner - which would only be AMD.
Because amd64 and arm64 look so similar we didn't spot this in the initial PR.
To fix this, we can simplify the matrix a bit and just iterate over the actual values
amd64
andarm64
.Changes
amd64
andarm64
and use the matrix value directly for downloading and publishing the summary.Testing