forked from git-for-windows/git
-
Notifications
You must be signed in to change notification settings - Fork 98
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
Add support for Windows on ARM #713
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mjcheetham
force-pushed
the
mjcheetham/armtest
branch
from
December 10, 2024 13:36
72f5234
to
68363a2
Compare
mjcheetham
force-pushed
the
mjcheetham/armtest
branch
from
December 10, 2024 15:37
68363a2
to
4935137
Compare
mjcheetham
force-pushed
the
mjcheetham/armtest
branch
from
December 10, 2024 15:59
4935137
to
f586e03
Compare
mjcheetham
force-pushed
the
mjcheetham/armtest
branch
from
December 11, 2024 13:25
f586e03
to
023efb6
Compare
mjcheetham
force-pushed
the
mjcheetham/armtest
branch
from
December 11, 2024 14:32
023efb6
to
fcc19e9
Compare
Add support for building Microsoft Git on Windows/ARM64. We use a custom 1ES pool that we maintain to provide ARM64 GitHub runners that have the latest Git for Windows ARM64 installed. Signed-off-by: Matthew John Cheetham <[email protected]>
mjcheetham
force-pushed
the
mjcheetham/armtest
branch
from
December 16, 2024 17:57
32bb57c
to
14ae9b1
Compare
dscho
approved these changes
Dec 18, 2024
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.
Great stuff!
dscho
pushed a commit
that referenced
this pull request
Dec 19, 2024
Bring support for Windows on ARM64 to this fork of Git. We make use of a custom 1ES hosted pool (hosted in Azure) that runs Windows 11 ARM64 on a `B4pls v2` sized VM SKU. The image has the latest Git for Windows ARM64 installed, the GitHub Actions runner, along with PowerShell Core (required for the GitHub Actions runner). Requests with the `['self-hosted', '1ES.Pool=github-arm64-pool']` labels will be directed to the 1ES hosted pool. A few changes were made to the `build-git-installers.yml` workflow, mainly to parameterise the architecture to allow for x86_64 and aarch64 builds, via a matrix strategy. Find the end-to-end successful build of `build-git-installers.yml` [here](https://github.com/microsoft/git/actions/runs/12358457268).
This was referenced Dec 19, 2024
dscho
added a commit
to git-for-windows/git
that referenced
this pull request
Dec 19, 2024
This is no longer needed, as Git for Windows' regular release process (as well as regular CI builds) now support the clang-aarch64 parts out of the box. I noticed that this is still part of Git for Windows' branch thicket when reviewing microsoft#713
dscho
pushed a commit
that referenced
this pull request
Dec 19, 2024
Bring support for Windows on ARM64 to this fork of Git. We make use of a custom 1ES hosted pool (hosted in Azure) that runs Windows 11 ARM64 on a `B4pls v2` sized VM SKU. The image has the latest Git for Windows ARM64 installed, the GitHub Actions runner, along with PowerShell Core (required for the GitHub Actions runner). Requests with the `['self-hosted', '1ES.Pool=github-arm64-pool']` labels will be directed to the 1ES hosted pool. A few changes were made to the `build-git-installers.yml` workflow, mainly to parameterise the architecture to allow for x86_64 and aarch64 builds, via a matrix strategy. Find the end-to-end successful build of `build-git-installers.yml` [here](https://github.com/microsoft/git/actions/runs/12358457268).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bring support for Windows on ARM64 to this fork of Git. We make use of a custom 1ES hosted pool (hosted in Azure) that runs Windows 11 ARM64 on a
B4pls v2
sized VM SKU. The image has the latest Git for Windows ARM64 installed, the GitHub Actions runner, along with PowerShell Core (required for the GitHub Actions runner).Requests with the
['self-hosted', '1ES.Pool=github-arm64-pool']
labels will be directed to the 1ES hosted pool.A few changes were made to the
build-git-installers.yml
workflow, mainly to parameterise the architecture to allow for x86_64 and aarch64 builds, via a matrix strategy.Find the end-to-end successful build of
build-git-installers.yml
here.