Skip to content

Commit

Permalink
Update ios-simulator-builds.md (#2850)
Browse files Browse the repository at this point in the history
Add addtional build paramaters for valid simulator builds.
  • Loading branch information
kevin-suhajda authored Nov 25, 2024
1 parent fca035b commit e6b69e9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions content/yaml-code-signing/ios-simulator-builds.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ Adjust your build script to use this commands instead:
xcodebuild build \
-workspace "MyXcodeWorkspace.xcworkspace" \
-scheme "MyScheme" \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=18.0' \
-configuration Debug \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO
Expand All @@ -28,6 +31,9 @@ Adjust your build script to use this commands instead:
# xcodebuild build \
# -project ""MyXcodeProject.xcodeproj" \
# -scheme "MyScheme" \
# -sdk iphonesimulator \
# -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=18.0' \
# -configuration Debug \
# CODE_SIGN_IDENTITY="" \
# CODE_SIGNING_REQUIRED=NO \
# CODE_SIGNING_ALLOWED=NO
Expand Down Expand Up @@ -90,7 +96,7 @@ workflows:
-workspace "$XCODE_WORKSPACE" \
-scheme "$XCODE_SCHEME" \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 14 Pro,OS=16.2' \
-destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=18.0' \
-configuration Debug \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
Expand Down Expand Up @@ -138,4 +144,4 @@ workflows:
$DOTNET dotnet build -f net7.0-ios -c Debug -o ../artifacts
artifacts:
- ./artifacts/*.app
{{< /highlight >}}
{{< /highlight >}}

0 comments on commit e6b69e9

Please sign in to comment.