Skip to content

Commit f835b30

Browse files
dennisamelingdscho
authored andcommitted
git-artifacts: add workaround for GCM Core on ARM64
Since there is no GCM Core for ARM64, let's just install a simple shell script that calls the i686 version for now. Signed-off-by: Dennis Ameling <[email protected]> Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 72db0dc commit f835b30

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/git-artifacts.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,13 @@ jobs:
420420
with:
421421
name: arm64-artifacts
422422
path: ${{github.workspace}}/arm64
423+
# Workaround for Git Credential Manager Core on ARM64: https://github.com/git-for-windows/git/issues/3015
424+
- name: Create git-credential-manager-core wrapper for ARM64
425+
if: matrix.arch.arm64 == true
426+
shell: bash
427+
run: |
428+
printf '%s\n' '#!/bin/sh' 'exec /mingw32/libexec/git-core/git-credential-manager-core.exe "$@"' > arm64/bin/git-credential-manager-core
429+
chmod +x arm64/bin/git-credential-manager-core
423430
- name: Clone and update build-extra
424431
if: env.SKIP != 'true'
425432
shell: bash

0 commit comments

Comments
 (0)