Skip to content

Commit

Permalink
Merge pull request #3076 from dennisameling/git-credential-manager-co…
Browse files Browse the repository at this point in the history
…re-arm64

git-artifacts: add workaround for GCM Core on ARM64
  • Loading branch information
dscho authored and Git for Windows Build Agent committed May 22, 2021
2 parents 6d8e462 + ae7ad6b commit 98d9a05
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/git-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,13 @@ jobs:
with:
name: arm64-artifacts
path: ${{github.workspace}}/arm64
# Workaround for Git Credential Manager Core on ARM64: https://github.com/git-for-windows/git/issues/3015
- name: Create git-credential-manager-core wrapper for ARM64
if: env.SKIP != 'true' && matrix.arch.arm64 == true
shell: bash
run: |
printf '%s\n' '#!/bin/sh' 'exec /mingw32/libexec/git-core/git-credential-manager-core.exe "$@"' > arm64/libexec/git-core/git-credential-manager-core
chmod +x arm64/libexec/git-core/git-credential-manager-core
- name: Clone and update build-extra
if: env.SKIP != 'true'
shell: bash
Expand Down

0 comments on commit 98d9a05

Please sign in to comment.