From b411335998b2e4acf6c1c9a577de9b1e346240bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20Gro=C3=9F?= Date: Thu, 11 May 2023 13:01:24 +0200 Subject: [PATCH] Do not try to package on Linux aarch64 as it currently fails trying to build server-console. The packaging step on Linux produces an empty archive anyways, so we just disable it. --- .github/workflows/pr_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr_build.yml b/.github/workflows/pr_build.yml index 49d4363081..39ca5b449a 100644 --- a/.github/workflows/pr_build.yml +++ b/.github/workflows/pr_build.yml @@ -259,7 +259,7 @@ jobs: cmake --build . --config $BUILD_TYPE --target packaged-server-console $CMAKE_BUILD_EXTRA - name: Build Installer - if: matrix.build_type != 'android' + if: matrix.build_type != 'android' && matrix.arch != 'aarch64' working-directory: build shell: bash run: |