@@ -107,7 +107,16 @@ jobs:
107107 DESTINATION="platform=iOS Simulator,name=$(cat ./iphoneSim),OS=latest"
108108 xcodebuild -scheme xcframework
109109 cd SDKIntegrationTestApps/iOSReleaseTest-Manual/
110- xcodebuild test -scheme iOSReleaseTest -project iOSReleaseTest.xcodeproj -destination "$DESTINATION" -resultBundlePath ../../test-results/ios-xcframework.xcresult
110+ xcodebuild -configuration Debug \
111+ -scheme iOSReleaseTest -project iOSReleaseTest.xcodeproj \
112+ -sdk iphonesimulator \
113+ -destination "$DESTINATION" \
114+ CODE_SIGNING_ALLOWED=NO \
115+ CODE_SIGNING_REQUIRED=NO \
116+ PROVISIONING_PROFILE_SPECIFIER="" \
117+ DEVELOPMENT_TEAM="" \
118+ -resultBundlePath ../../test-results/ios-xcframework.xcresult \
119+ clean test
111120 - name : Upload test report
112121 uses : actions/upload-artifact@v4
113122 if : always()
@@ -127,7 +136,16 @@ jobs:
127136 DESTINATION="platform=iOS Simulator,name=$(cat ./iphoneSim),OS=latest"
128137 xcodebuild -scheme static-xcframework
129138 cd SDKIntegrationTestApps/iOSReleaseTest-Manual-Static/
130- xcodebuild test -scheme iOSReleaseTest -project iOSReleaseTest.xcodeproj -destination "$DESTINATION" -resultBundlePath ../../test-results/ios-static-framework.xcresult
139+ xcodebuild -configuration Debug \
140+ -scheme iOSReleaseTest -project iOSReleaseTest.xcodeproj \
141+ -sdk iphonesimulator \
142+ -destination "$DESTINATION" \
143+ CODE_SIGNING_ALLOWED=NO \
144+ CODE_SIGNING_REQUIRED=NO \
145+ PROVISIONING_PROFILE_SPECIFIER="" \
146+ DEVELOPMENT_TEAM="" \
147+ -resultBundlePath ../../test-results/ios-static-framework.xcresult \
148+ clean test
131149 - name : Upload test report
132150 uses : actions/upload-artifact@v4
133151 if : always()
0 commit comments