Skip to content

Commit dc6d00d

Browse files
davutclaude
andcommitted
Fix CI build: lower deployment target and disable code signing
- Lower MACOSX_DEPLOYMENT_TARGET from 15.7 to 15.0 (CI runner max is 15.2) - Disable code signing in build.sh for unsigned CI builds Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3c46221 commit dc6d00d

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

Wirdi/Wirdi.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180
GCC_WARN_UNUSED_FUNCTION = YES;
181181
GCC_WARN_UNUSED_VARIABLE = YES;
182182
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
183-
MACOSX_DEPLOYMENT_TARGET = 15.7;
183+
MACOSX_DEPLOYMENT_TARGET = 15.0;
184184
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
185185
MTL_FAST_MATH = YES;
186186
ONLY_ACTIVE_ARCH = YES;
@@ -239,7 +239,7 @@
239239
GCC_WARN_UNUSED_FUNCTION = YES;
240240
GCC_WARN_UNUSED_VARIABLE = YES;
241241
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
242-
MACOSX_DEPLOYMENT_TARGET = 15.7;
242+
MACOSX_DEPLOYMENT_TARGET = 15.0;
243243
MTL_ENABLE_DEBUG_INFO = NO;
244244
MTL_FAST_MATH = YES;
245245
SDKROOT = macosx;

Wirdi/build.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ xcodebuild archive \
2727
ONLY_ACTIVE_ARCH=NO \
2828
SKIP_INSTALL=NO \
2929
BUILD_LIBRARY_FOR_DISTRIBUTION=YES \
30+
CODE_SIGN_IDENTITY="-" \
31+
CODE_SIGNING_REQUIRED=NO \
32+
CODE_SIGNING_ALLOWED=NO \
3033
-quiet
3134

3235
echo "🔨 Building for Intel (x86_64)…"
@@ -40,6 +43,9 @@ xcodebuild archive \
4043
ONLY_ACTIVE_ARCH=NO \
4144
SKIP_INSTALL=NO \
4245
BUILD_LIBRARY_FOR_DISTRIBUTION=YES \
46+
CODE_SIGN_IDENTITY="-" \
47+
CODE_SIGNING_REQUIRED=NO \
48+
CODE_SIGNING_ALLOWED=NO \
4349
-quiet
4450

4551
ARM_APP="$ARCHIVE_ARM/Products/Applications/$APP_NAME"

0 commit comments

Comments
 (0)