Fix: [CI] don't install breakpad on arm64-windows-static, as it is not supported (yet) (#11242)

This commit is contained in:
Patric Stout 2023-08-28 16:49:14 +02:00 committed by GitHub
parent 110dd0e6c1
commit 13b76b0243
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -65,7 +65,6 @@ jobs:
shell: bash
run: |
vcpkg install --triplet=${{ matrix.arch }}-windows-static \
breakpad \
liblzma \
libpng \
lzo \
@ -73,6 +72,13 @@ jobs:
zlib \
# EOF
# arm64-windows-static is not (yet) supported for breakpad.
if [ "${{ matrix.arch }}" != "arm64" ]; then
vcpkg install --triplet=${{ matrix.arch }}-windows-static \
breakpad \
# EOF
fi
- name: Install MSVC problem matcher
uses: ammaraskar/msvc-problem-matcher@master