From 7b9b8115679a624062f00d8c915b7aa789573fd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20Gro=C3=9F?= Date: Mon, 15 Aug 2022 23:07:52 +0200 Subject: [PATCH] Install updated CMake on the aarch64 GitHub Actions runner --- .github/workflows/pr_build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/pr_build.yml b/.github/workflows/pr_build.yml index ef3cb397ad..c58c0c0069 100644 --- a/.github/workflows/pr_build.yml +++ b/.github/workflows/pr_build.yml @@ -188,6 +188,13 @@ jobs: sudo cp -rp MacOSX10.12.sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/ || exit 0 echo " done" fi + if [[ "${{ matrix.os }}" =~ "debian-11" ]]; then + echo "Installing CMake from Debian Backports" + echo deb http://deb.debian.org/debian bullseye-backports main > /etc/apt/sources.list.d/bullseye-backports.list + sudo apt update + sudo apt-get -t bullseye-backports install -y cmake + fi + - name: Override NSIS shell: pwsh