From 2666efab48e12498efdf8a71cb293b2fb5bda53a Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Tue, 15 Dec 2020 21:44:28 +0100 Subject: [PATCH] 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 --- .github/workflows/main.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dcd572f64665e1..76de087e8a32a5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -189,7 +189,6 @@ jobs: unzip artifacts.zip rm artifacts.zip - name: download vcpkg artifacts - if: matrix.arch == 'x64' shell: powershell run: | $urlbase = "https://dev.azure.com/git/git/_apis/build/builds" @@ -198,9 +197,6 @@ jobs: (New-Object Net.WebClient).DownloadFile($downloadUrl, "compat.zip") Expand-Archive compat.zip -DestinationPath . -Force Remove-Item compat.zip - - name: install vcpkg deps for arm64 - if: matrix.arch == 'arm64' - run: .\compat\vcbuild\vcpkg_install.bat arm64-windows - name: add msbuild to PATH uses: microsoft/setup-msbuild@v1 - name: copy dlls to root