From 4baef39af5709ec44ee523b49a994a922dc3c4f0 Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 26 Sep 2022 18:43:17 +0100 Subject: [PATCH] Ensure qt is enabled for cardinal builds Signed-off-by: falkTX --- .github/workflows/bootstrap.yml | 8 ++++---- bootstrap-cardinal.sh | 7 +++---- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/bootstrap.yml b/.github/workflows/bootstrap.yml index 18bd285..28725a9 100644 --- a/.github/workflows/bootstrap.yml +++ b/.github/workflows/bootstrap.yml @@ -748,10 +748,10 @@ jobs: #installer: homebrew #os: macos-11 #target: macos - - name: macos-universal - installer: homebrew - os: macos-11 - target: macos-universal + #- name: macos-universal + #installer: homebrew + #os: macos-11 + #target: macos-universal - name: win32 installer: apt os: ubuntu-22.04 diff --git a/bootstrap-cardinal.sh b/bootstrap-cardinal.sh index e8df7cc..eb33ee8 100755 --- a/bootstrap-cardinal.sh +++ b/bootstrap-cardinal.sh @@ -23,10 +23,9 @@ export PAWPAW_SKIP_LV2=1 export PAWPAW_SKIP_SAMPLERATE=1 # we just build the whole thing on Windows -# if [ "${target}" != "win32" ] && [ "${target}" != "win64" ]; then -# FIXME finish the qt part -export PAWPAW_SKIP_QT=1 -# fi +if [ "${target}" != "win32" ] && [ "${target}" != "win64" ]; then + export PAWPAW_SKIP_QT=1 +fi ./bootstrap-common.sh "${target}" ./bootstrap-plugins.sh "${target}"