Private
Public Access
1
0

fix(ci): switch to signed IPA build via APPLE_SIGNING group

Replace unsigned CODE_SIGNING_ALLOWED=NO build with proper ad-hoc
signed archive using keychain, certificate, and provisioning profile.
Update xtool.yml schema to match current xtool v1 format.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-09 13:27:45 +01:00
parent 5847294a80
commit cdc40774c4
2 changed files with 47 additions and 30 deletions

View File

@@ -15,6 +15,7 @@ workflows:
xcode: latest xcode: latest
groups: groups:
- SLABS - SLABS
- APPLE_SIGNING
vars: vars:
BUNDLE_ID: uk.silverlabs.silverapple BUNDLE_ID: uk.silverlabs.silverapple
GITEA_REPO: SilverLABS/SilverApple GITEA_REPO: SilverLABS/SilverApple
@@ -26,7 +27,26 @@ workflows:
brew install xcodegen brew install xcodegen
xcodegen generate --spec project.yml xcodegen generate --spec project.yml
- name: Build (unsigned) - name: Initialize keychain
script: keychain initialize
- name: Install signing certificate
script: |
echo $CM_CERTIFICATE | base64 --decode > /tmp/cert.p12
keychain add-certificates \
--certificate /tmp/cert.p12 \
--certificate-password $CM_CERTIFICATE_PASSWORD
- name: Install provisioning profile
script: |
echo $CM_PROVISIONING_PROFILE | base64 --decode > /tmp/profile.mobileprovision
mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles
cp /tmp/profile.mobileprovision ~/Library/MobileDevice/Provisioning\ Profiles/
- name: Configure Xcode signing
script: xcode-project use-profiles
- name: Build (signed)
script: | script: |
xcodebuild archive \ xcodebuild archive \
-project SilverApple.xcodeproj \ -project SilverApple.xcodeproj \
@@ -34,26 +54,28 @@ workflows:
-destination "generic/platform=iOS" \ -destination "generic/platform=iOS" \
-configuration Release \ -configuration Release \
-archivePath "$CM_BUILD_DIR/SilverApple.xcarchive" \ -archivePath "$CM_BUILD_DIR/SilverApple.xcarchive" \
CODE_SIGNING_ALLOWED=NO \ DEVELOPMENT_TEAM="$APPLE_TEAM_ID" \
CODE_SIGNING_REQUIRED=NO \ CODE_SIGN_STYLE=Manual
CODE_SIGN_IDENTITY="" \
PROVISIONING_PROFILE=""
- name: Package IPA - name: Export signed IPA
script: | script: |
cd "$CM_BUILD_DIR" cat > /tmp/ExportOptions.plist << 'EOF'
APP=$(find SilverApple.xcarchive/Products -name "*.app" -type d | head -1) <?xml version="1.0" encoding="UTF-8"?>
if [ -z "$APP" ]; then <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
echo "ERROR: No .app found in xcarchive. Contents:" <plist version="1.0">
find SilverApple.xcarchive -type d | head -30 <dict>
exit 1 <key>method</key>
fi <string>ad-hoc</string>
echo "Packaging: $APP" <key>signingStyle</key>
mkdir -p Payload <string>manual</string>
cp -r "$APP" Payload/ </dict>
zip -r SilverApple.ipa Payload/ </plist>
rm -rf Payload EOF
echo "IPA size: $(du -sh SilverApple.ipa | cut -f1)" xcodebuild -exportArchive \
-archivePath "$CM_BUILD_DIR/SilverApple.xcarchive" \
-exportPath "$CM_BUILD_DIR/export" \
-exportOptionsPlist /tmp/ExportOptions.plist
cp "$CM_BUILD_DIR/export/SilverApple.ipa" "$CM_BUILD_DIR/SilverApple.ipa"
- name: Publish to Gitea - name: Publish to Gitea
script: | script: |

View File

@@ -1,13 +1,8 @@
# xTool configuration — https://xtool.sh # xTool configuration — https://xtool.sh
# Run `xtool configure` once to set up your Apple ID credentials and Darwin SDK. # Run `xtool setup` once to configure your Apple ID credentials and extract the Darwin SDK.
# Then: `xtool run` to build and install directly to a connected device. # Then: `xtool dev` to build and deploy directly to a connected USB device.
targets: version: 1
SilverApple: bundleID: uk.silverlabs.silverapple
bundleIdentifier: uk.silverlabs.silverapple infoPath: SilverApple/Info.plist
# Fill in your Apple Developer Team ID (10-char string from developer.apple.com) entitlementsPath: SilverApple/SilverApple.entitlements
teamID: ""
infoPlist: SilverApple/Info.plist
entitlements: SilverApple/SilverApple.entitlements
deploymentTarget: "16.0"
deviceFamily: [iphone]