Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modified arguments passed to xcodebuild when building iOS apps. #2102

Merged
merged 1 commit into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changes/2102.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The arguments passed to xcodebuild when compiling an iOS app have been modified to avoid a warning about an ignored argument.
2 changes: 0 additions & 2 deletions src/briefcase/platforms/iOS/xcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,6 @@ def build_app(self, app: AppConfig, test_mode: bool = False, **kwargs):
"build",
"-project",
self.project_path(app),
"-destination",
'platform="iOS Simulator"',
"-configuration",
"Debug",
"-arch",
Expand Down
6 changes: 0 additions & 6 deletions tests/platforms/iOS/xcode/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ def test_build_app(build_command, first_app_generated, tool_debug_mode, tmp_path
/ "ios"
/ "xcode"
/ "First App.xcodeproj",
"-destination",
'platform="iOS Simulator"',
"-configuration",
"Debug",
"-arch",
Expand Down Expand Up @@ -87,8 +85,6 @@ def test_build_app_test_mode(build_command, first_app_generated, tmp_path):
/ "ios"
/ "xcode"
/ "First App.xcodeproj",
"-destination",
'platform="iOS Simulator"',
"-configuration",
"Debug",
"-arch",
Expand Down Expand Up @@ -133,8 +129,6 @@ def test_build_app_failed(build_command, first_app_generated, tmp_path):
/ "ios"
/ "xcode"
/ "First App.xcodeproj",
"-destination",
'platform="iOS Simulator"',
"-configuration",
"Debug",
"-arch",
Expand Down
Loading