mirror of
https://github.com/git-for-windows/git.git
synced 2026-03-17 13:23:05 -05:00
No GitHub-hosted ARM64 runners are available at the moment of writing, but folks can leverage self-hosted runners of this architecture. This CI pipeline comes in handy for forks of the git-for-windows/git project that have such runners available. The pipeline can be kicked off manually through a workflow_dispatch. Signed-off-by: Dennis Ameling <dennis@dennisameling.com>
26 lines
559 B
YAML
26 lines
559 B
YAML
name: CLANG build ARM64
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
clang-build:
|
|
runs-on: [Windows, ARM64]
|
|
env:
|
|
NO_PERL: 1
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: git-for-windows/setup-git-for-windows-sdk@v1
|
|
with:
|
|
flavor: makepkg-git
|
|
architecture: aarch64
|
|
# This assumes that the job is running on a self-hosted runner,
|
|
# in which case we need to cleanup SDK files.
|
|
cleanup: true
|
|
- name: Build Git CLANGARM64
|
|
run: make -j`nproc`
|