mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-07-19 18:35:48 +01:00
Fix: [CI] don't install breakpad on arm64-windows-static, as it is not supported (yet) (#11242)
This commit is contained in:
parent
110dd0e6c1
commit
13b76b0243
8
.github/workflows/release-windows.yml
vendored
8
.github/workflows/release-windows.yml
vendored
@ -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…
Reference in New Issue
Block a user