KMP project. Does anyone know how to optimize builds for iOS / Xcode? This is what I'm getting for a little change in the same shared feature module :( Same on local.
- name: π· Build iOS App
timeout-minutes: 45
shell: bash
run: |
echo "π¦ Building iOS with BUILD_TYPE='$BUILD_TYPE'"
set -euo pipefail
PROJECT_PATH="apps/ios/woopzi.xcodeproj"
xcodebuild -project "$PROJECT_PATH" \
-scheme "$BUILD_TYPE" \
-configuration "$BUILD_TYPE" \
-destination generic/platform=iOS \
build \
CODE_SIGNING_ALLOWED=NO
