CLANG build ARM64 #1
Workflow file for this run
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
name: CLANG build ARM64 | |
on: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
clang-build: | |
runs-on: ['self-hosted', '1ES.Pool=github-arm64-pool'] | |
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` |