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

pull/611/head
Patric Stout 9 months ago committed by GitHub
parent 110dd0e6c1
commit 13b76b0243
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save