-
Notifications
You must be signed in to change notification settings - Fork 16
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
Windows ARM64 image is missing Microsoft Visual C++ #19
Comments
Hi @yorickdowne A new Windows image for ARM64 is being prepared, and it includes Visual Studio and other development tools. I don't have a date, but it's quite close to being available. |
@jasonrandrews will Git for Windows also be included in the new image? I'm currently getting this warning:
Because Git isn't installed, some other commands in my pipeline are failing. I worked around it by just installing it manually for now, but it still caused some issues later in the pipeline because it expects Git to be available on the PATH. Manually adding it to Please note that Git for Windows ARM64 support is being worked on (GitHub-hosted ARM64 runners for OSS would help a lot there), but the x64 version of GfW should be fine for now as Windows can emulate it. Thanks! |
Hi @dennisameling, The emulated Git is in the image and works fine. |
Sounds like the new image is close! Please also document it here when it gets released: https://github.com/actions/partner-runner-images?tab=readme-ov-file#available-images |
Do you have an update on this? |
The Windows image build is complete and the GitHub Actions integration testing starts next week. Hopefully, not too much longer, sorry for the delay. We had a lot of issues beyond our control. |
The Windows ARM64 runner image is missing Microsoft Visual Studio, or at least its C++ component.
As a result,
pip install wheel
fails after using thesetup-python
action. See actions/setup-python#931The error message encountered is:
distutils.errors.DistutilsPlatformError: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/
Looking at the Windows 2022 amd64 runner image, development tool dependencies appear to be part of the image itself. Hence this issue.
The text was updated successfully, but these errors were encountered: