Copilot commented on code in PR #3181:
URL: https://github.com/apache/iceberg-rust/pull/3181#discussion_r3970347086
##########
.github/workflows/release_python.yml:
##########
@@ -144,6 +144,7 @@ jobs:
matrix:
include:
- { os: windows-latest }
+ - { os: windows-11-arm }
Review Comment:
Same issue as in the nightly workflow: `windows-11-arm` is likely not a
valid runner label and will break releases. Use the correct Windows ARM64
runner label (commonly `windows-11-arm64`) or gate this entry behind
availability to avoid release-time failures.
##########
.github/workflows/release_python_nightly.yml:
##########
@@ -77,6 +77,7 @@ jobs:
matrix:
include:
- { os: windows-latest }
+ - { os: windows-11-arm }
Review Comment:
The runner label `windows-11-arm` is unlikely to be a valid GitHub-hosted
runner label, which will cause the workflow to fail at dispatch time. GitHub’s
Windows ARM64 hosted runner label is typically `windows-11-arm64`; consider
switching to the correct label (or introducing a fallback/conditional if ARM64
runners aren’t available for this repository).
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]