Skip to content

Commit f102af5

Browse files
dschoGit for Windows Build Agent
authored and
Git for Windows Build Agent
committed
Merge pull request #2915 from dennisameling/windows-arm64-support
Windows arm64 support
2 parents 1055878 + 1f027c7 commit f102af5

File tree

5 files changed

+65
-15
lines changed

5 files changed

+65
-15
lines changed

.github/workflows/main.yml

+10-7
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,11 @@ jobs:
169169
NO_PERL: 1
170170
GIT_CONFIG_PARAMETERS: "'user.name=CI' 'user.email=ci@git'"
171171
runs-on: windows-latest
172+
strategy:
173+
matrix:
174+
arch: [x64, arm64]
172175
concurrency:
173-
group: vs-build-${{ github.ref }}
176+
group: vs-build-${{ github.ref }}-${{ matrix.arch }}
174177
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
175178
steps:
176179
- uses: actions/checkout@v4
@@ -189,14 +192,14 @@ jobs:
189192
uses: microsoft/setup-msbuild@v2
190193
- name: copy dlls to root
191194
shell: cmd
192-
run: compat\vcbuild\vcpkg_copy_dlls.bat release
195+
run: compat\vcbuild\vcpkg_copy_dlls.bat release ${{ matrix.arch }}-windows
193196
- name: generate Visual Studio solution
194197
shell: bash
195198
run: |
196-
cmake `pwd`/contrib/buildsystems/ -DCMAKE_PREFIX_PATH=`pwd`/compat/vcbuild/vcpkg/installed/x64-windows \
197-
-DNO_GETTEXT=YesPlease -DPERL_TESTS=OFF -DPYTHON_TESTS=OFF -DCURL_NO_CURL_CMAKE=ON
199+
cmake `pwd`/contrib/buildsystems/ -DCMAKE_PREFIX_PATH=`pwd`/compat/vcbuild/vcpkg/installed/${{ matrix.arch }}-windows \
200+
-DNO_GETTEXT=YesPlease -DPERL_TESTS=OFF -DPYTHON_TESTS=OFF -DCURL_NO_CURL_CMAKE=ON -DCMAKE_GENERATOR_PLATFORM=${{ matrix.arch }} -DVCPKG_ARCH=${{ matrix.arch }}-windows
198201
- name: MSBuild
199-
run: msbuild git.sln -property:Configuration=Release -property:Platform=x64 -maxCpuCount:4 -property:PlatformToolset=v142
202+
run: msbuild git.sln -property:Configuration=Release -property:Platform=${{ matrix.arch }} -maxCpuCount:4 -property:PlatformToolset=v142
200203
- name: bundle artifact tar
201204
shell: bash
202205
env:
@@ -210,7 +213,7 @@ jobs:
210213
- name: upload tracked files and build artifacts
211214
uses: actions/upload-artifact@v4
212215
with:
213-
name: vs-artifacts
216+
name: vs-artifacts-${{ matrix.arch }}
214217
path: artifacts
215218
vs-test:
216219
name: win+VS test
@@ -228,7 +231,7 @@ jobs:
228231
- name: download tracked files and build artifacts
229232
uses: actions/download-artifact@v4
230233
with:
231-
name: vs-artifacts
234+
name: vs-artifacts-x64
232235
path: ${{github.workspace}}
233236
- name: extract tracked files and build artifacts
234237
shell: bash

compat/vcbuild/README

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ The Steps to Build Git with VS2015 or VS2017 from the command line.
66
Prompt or from an SDK bash window:
77

88
$ cd <repo_root>
9-
$ ./compat/vcbuild/vcpkg_install.bat
9+
$ ./compat/vcbuild/vcpkg_install.bat x64-windows
10+
11+
or
12+
13+
$ ./compat/vcbuild/vcpkg_install.bat arm64-windows
1014

1115
The vcpkg tools and all of the third-party sources will be installed
1216
in this folder:

compat/vcbuild/vcpkg_copy_dlls.bat

+6-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ REM ================================================================
1515
@FOR /F "delims=" %%D IN ("%~dp0") DO @SET cwd=%%~fD
1616
cd %cwd%
1717

18-
SET arch=x64-windows
18+
SET arch=%2
19+
IF NOT DEFINED arch (
20+
echo defaulting to 'x64-windows`. Invoke %0 with 'x86-windows', 'x64-windows', or 'arm64-windows'
21+
set arch=x64-windows
22+
)
23+
1924
SET inst=%cwd%vcpkg\installed\%arch%
2025

2126
IF [%1]==[release] (

compat/vcbuild/vcpkg_install.bat

+41-3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ REM ================================================================
3131

3232
SETLOCAL EnableDelayedExpansion
3333

34+
SET arch=%1
35+
IF NOT DEFINED arch (
36+
echo defaulting to 'x64-windows`. Invoke %0 with 'x86-windows', 'x64-windows', or 'arm64-windows'
37+
set arch=x64-windows
38+
)
39+
3440
@FOR /F "delims=" %%D IN ("%~dp0") DO @SET cwd=%%~fD
3541
cd %cwd%
3642

@@ -55,9 +61,8 @@ REM ================================================================
5561
echo Successfully installed %cwd%vcpkg\vcpkg.exe
5662

5763
:install_libraries
58-
SET arch=x64-windows
5964

60-
echo Installing third-party libraries...
65+
echo Installing third-party libraries(%arch%)...
6166
FOR %%i IN (zlib expat libiconv openssl libssh2 curl) DO (
6267
cd %cwd%vcpkg
6368
IF NOT EXIST "packages\%%i_%arch%" CALL :sub__install_one %%i
@@ -80,14 +85,47 @@ REM ================================================================
8085
:sub__install_one
8186
echo Installing package %1...
8287

88+
call :%1_features
89+
8390
REM vcpkg may not be reliable on slow, intermittent or proxy
8491
REM connections, see e.g.
8592
REM https://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/4a8f7be5-5e15-4213-a7bb-ddf424a954e6/winhttpsendrequest-ends-with-12002-errorhttptimeout-after-21-seconds-no-matter-what-timeout?forum=windowssdk
8693
REM which explains the hidden 21 second timeout
8794
REM (last post by Dave : Microsoft - Windows Networking team)
8895

89-
.\vcpkg.exe install %1:%arch%
96+
.\vcpkg.exe install %1%features%:%arch%
9097
IF ERRORLEVEL 1 ( EXIT /B 1 )
9198

9299
echo Finished %1
93100
goto :EOF
101+
102+
::
103+
:: features for each vcpkg to install
104+
:: there should be an entry here for each package to install
105+
:: 'set features=' means use the default otherwise
106+
:: 'set features=[comma-delimited-feature-set]' is the syntax
107+
::
108+
109+
:zlib_features
110+
set features=
111+
goto :EOF
112+
113+
:expat_features
114+
set features=
115+
goto :EOF
116+
117+
:libiconv_features
118+
set features=
119+
goto :EOF
120+
121+
:openssl_features
122+
set features=
123+
goto :EOF
124+
125+
:libssh2_features
126+
set features=
127+
goto :EOF
128+
129+
:curl_features
130+
set features=[core,openssl,schannel]
131+
goto :EOF

contrib/buildsystems/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ if(USE_VCPKG)
6565
set(VCPKG_DIR "${CMAKE_SOURCE_DIR}/compat/vcbuild/vcpkg")
6666
if(NOT EXISTS ${VCPKG_DIR})
6767
message("Initializing vcpkg and building the Git's dependencies (this will take a while...)")
68-
execute_process(COMMAND ${CMAKE_SOURCE_DIR}/compat/vcbuild/vcpkg_install.bat)
68+
execute_process(COMMAND ${CMAKE_SOURCE_DIR}/compat/vcbuild/vcpkg_install.bat ${VCPKG_ARCH})
6969
endif()
70-
list(APPEND CMAKE_PREFIX_PATH "${VCPKG_DIR}/installed/x64-windows")
70+
list(APPEND CMAKE_PREFIX_PATH "${VCPKG_DIR}/installed/${VCPKG_ARCH}")
7171

7272
# In the vcpkg edition, we need this to be able to link to libcurl
7373
set(CURL_NO_CURL_CMAKE ON)
@@ -1212,7 +1212,7 @@ string(REPLACE "@USE_LIBPCRE2@" "" git_build_options "${git_build_options}")
12121212
string(REPLACE "@WITH_BREAKING_CHANGES@" "" git_build_options "${git_build_options}")
12131213
string(REPLACE "@X@" "${EXE_EXTENSION}" git_build_options "${git_build_options}")
12141214
if(USE_VCPKG)
1215-
string(APPEND git_build_options "PATH=\"$PATH:$TEST_DIRECTORY/../compat/vcbuild/vcpkg/installed/x64-windows/bin\"\n")
1215+
string(APPEND git_build_options "PATH=\"$PATH:$TEST_DIRECTORY/../compat/vcbuild/vcpkg/installed/${VCPKG_ARCH}/bin\"\n")
12161216
endif()
12171217
file(WRITE ${CMAKE_BINARY_DIR}/GIT-BUILD-OPTIONS ${git_build_options})
12181218

0 commit comments

Comments
 (0)