Skip to content

Commit 2666efa

Browse files
committed
fixup! ci(vs-build) also build Windows/ARM64 artifacts
Let's use the pre-built vcpkg artifacts instead of building the packages ourselves in _every_ single CI run. This saves quite a bit of time: about 1 minute to download & unpack the artifacts vs about 17 minutes to build them (and forcing `vs-test` and `windows-test` to wait for it). Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 714f8ae commit 2666efa

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ jobs:
189189
unzip artifacts.zip
190190
rm artifacts.zip
191191
- name: download vcpkg artifacts
192-
if: matrix.arch == 'x64'
193192
shell: powershell
194193
run: |
195194
$urlbase = "https://dev.azure.com/git/git/_apis/build/builds"
@@ -198,9 +197,6 @@ jobs:
198197
(New-Object Net.WebClient).DownloadFile($downloadUrl, "compat.zip")
199198
Expand-Archive compat.zip -DestinationPath . -Force
200199
Remove-Item compat.zip
201-
- name: install vcpkg deps for arm64
202-
if: matrix.arch == 'arm64'
203-
run: .\compat\vcbuild\vcpkg_install.bat arm64-windows
204200
- name: add msbuild to PATH
205201
uses: microsoft/setup-msbuild@v1
206202
- name: copy dlls to root

0 commit comments

Comments
 (0)