From 3947f896e58571b2b95d422032a4cc0ea3fabde1 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Sat, 26 Apr 2025 22:24:51 +0100 Subject: [PATCH] ci: Don't compile standalone room for MacOS Closes #672 --- .ci/macos-universal.sh | 4 ++-- .ci/macos.sh | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.ci/macos-universal.sh b/.ci/macos-universal.sh index 4ffde0794..15cb716e3 100755 --- a/.ci/macos-universal.sh +++ b/.ci/macos-universal.sh @@ -11,7 +11,7 @@ BASE_ARTIFACT_ARCH="${BASE_ARTIFACT##*-}" mv $BASE_ARTIFACT $BUNDLE_DIR # Executable binary paths that need to be combined. -BIN_PATHS=(azahar-room Azahar.app/Contents/MacOS/azahar) +BIN_PATHS=(Azahar.app/Contents/MacOS/azahar) # Dylib paths that need to be combined. IFS=$'\n' @@ -37,7 +37,7 @@ for OTHER_ARTIFACT in "${ARTIFACTS_LIST[@]:1}"; do done # Re-sign executables and bundles after combining. -APP_PATHS=(azahar-room Azahar.app) +APP_PATHS=(Azahar.app) for APP_PATH in "${APP_PATHS[@]}"; do codesign --deep -fs - $BUNDLE_DIR/$APP_PATH done diff --git a/.ci/macos.sh b/.ci/macos.sh index 94824f45b..4c353d1c3 100755 --- a/.ci/macos.sh +++ b/.ci/macos.sh @@ -11,6 +11,7 @@ cmake .. -GNinja \ -DCMAKE_C_COMPILER_LAUNCHER=ccache \ -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ -DENABLE_QT_TRANSLATION=ON \ + -DENABLE_ROOM_STANDALONE=OFF \ -DUSE_DISCORD_PRESENCE=ON \ "${EXTRA_CMAKE_FLAGS[@]}" ninja