From 13b76b0243627cebea736f2bb15a4481f4a72a98 Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Mon, 28 Aug 2023 16:49:14 +0200 Subject: [PATCH] Fix: [CI] don't install breakpad on arm64-windows-static, as it is not supported (yet) (#11242) --- .github/workflows/release-windows.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-windows.yml b/.github/workflows/release-windows.yml index 612abc4f72..ea1d4c8ef2 100644 --- a/.github/workflows/release-windows.yml +++ b/.github/workflows/release-windows.yml @@ -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