6363 echo "skip_concurrent=$skip_concurrent" >>$GITHUB_OUTPUT
6464 - name : skip if the commit or tree was already tested
6565 id : skip-if-redundant
66- uses : actions/github-script@v7
66+ uses : actions/github-script@v8
6767 if : steps.check-ref.outputs.enabled == 'yes'
6868 with :
6969 github-token : ${{secrets.GITHUB_TOKEN}}
@@ -112,7 +112,7 @@ jobs:
112112 group : windows-build-${{ github.ref }}
113113 cancel-in-progress : ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
114114 steps :
115- - uses : actions/checkout@v4
115+ - uses : actions/checkout@v5
116116 - uses : git-for-windows/setup-git-for-windows-sdk@v1
117117 - name : build
118118 shell : bash
@@ -140,7 +140,7 @@ jobs:
140140 cancel-in-progress : ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
141141 steps :
142142 - name : download tracked files and build artifacts
143- uses : actions/download-artifact@v4
143+ uses : actions/download-artifact@v5
144144 with :
145145 name : windows-artifacts
146146 path : ${{github.workspace}}
@@ -169,14 +169,17 @@ 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 :
176- - uses : actions/checkout@v4
179+ - uses : actions/checkout@v5
177180 - uses : git-for-windows/setup-git-for-windows-sdk@v1
178181 - name : initialize vcpkg
179- uses : actions/checkout@v4
182+ uses : actions/checkout@v5
180183 with :
181184 repository : ' microsoft/vcpkg'
182185 path : ' compat/vcbuild/vcpkg'
@@ -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 -DHOST_CPU=${{ matrix.arch }}
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
@@ -226,9 +229,9 @@ jobs:
226229 steps :
227230 - uses : git-for-windows/setup-git-for-windows-sdk@v1
228231 - name : download tracked files and build artifacts
229- uses : actions/download-artifact@v4
232+ uses : actions/download-artifact@v5
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
@@ -258,8 +261,8 @@ jobs:
258261 group : windows-meson-build-${{ github.ref }}
259262 cancel-in-progress : ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
260263 steps :
261- - uses : actions/checkout@v4
262- - uses : actions/setup-python@v5
264+ - uses : actions/checkout@v5
265+ - uses : actions/setup-python@v6
263266 - name : Set up dependencies
264267 shell : pwsh
265268 run : pip install meson ninja
@@ -286,13 +289,13 @@ jobs:
286289 group : windows-meson-test-${{ matrix.nr }}-${{ github.ref }}
287290 cancel-in-progress : ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
288291 steps :
289- - uses : actions/checkout@v4
290- - uses : actions/setup-python@v5
292+ - uses : actions/checkout@v5
293+ - uses : actions/setup-python@v6
291294 - name : Set up dependencies
292295 shell : pwsh
293296 run : pip install meson ninja
294297 - name : Download build artifacts
295- uses : actions/download-artifact@v4
298+ uses : actions/download-artifact@v5
296299 with :
297300 name : windows-meson-artifacts
298301 path : build
@@ -331,7 +334,7 @@ jobs:
331334 TEST_OUTPUT_DIRECTORY : ${{github.workspace}}/t
332335 runs-on : ${{matrix.vector.pool}}
333336 steps :
334- - uses : actions/checkout@v4
337+ - uses : actions/checkout@v5
335338 - run : ci/install-dependencies.sh
336339 - run : ci/run-build-and-tests.sh
337340 - name : print test failures
@@ -352,7 +355,7 @@ jobs:
352355 CI_JOB_IMAGE : ubuntu-latest
353356 runs-on : ubuntu-latest
354357 steps :
355- - uses : actions/checkout@v4
358+ - uses : actions/checkout@v5
356359 - run : ci/install-dependencies.sh
357360 - run : ci/run-build-and-minimal-fuzzers.sh
358361 dockerized :
@@ -429,7 +432,7 @@ jobs:
429432 else
430433 apt-get -q update && apt-get -q -y install git
431434 fi
432- - uses : actions/checkout@v4
435+ - uses : actions/checkout@v5
433436 - run : ci/install-dependencies.sh
434437 - run : useradd builder --create-home
435438 - run : chown -R builder .
@@ -454,7 +457,7 @@ jobs:
454457 group : static-analysis-${{ github.ref }}
455458 cancel-in-progress : ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
456459 steps :
457- - uses : actions/checkout@v4
460+ - uses : actions/checkout@v5
458461 - run : ci/install-dependencies.sh
459462 - run : ci/run-static-analysis.sh
460463 - run : ci/check-directional-formatting.bash
@@ -469,7 +472,7 @@ jobs:
469472 group : sparse-${{ github.ref }}
470473 cancel-in-progress : ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
471474 steps :
472- - uses : actions/checkout@v4
475+ - uses : actions/checkout@v5
473476 - name : Install other dependencies
474477 run : ci/install-dependencies.sh
475478 - run : make sparse
@@ -485,6 +488,6 @@ jobs:
485488 CI_JOB_IMAGE : ubuntu-latest
486489 runs-on : ubuntu-latest
487490 steps :
488- - uses : actions/checkout@v4
491+ - uses : actions/checkout@v5
489492 - run : ci/install-dependencies.sh
490493 - run : ci/test-documentation.sh
0 commit comments