8000 gh-114099 - Add iOS testbed, plus Makefile target to invoke it. by freakboy3742 · Pull Request #115930 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-114099 - Add iOS testbed, plus Makefile target to invoke it. #115930

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

Merged
merged 12 commits into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Make better use of wildcards.
  • Loading branch information
freakboy3742 committed Feb 26, 2024
commit 90066ae1b95957ebe86174dbecebdaa91322a35c
12 changes: 4 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,10 @@ Lib/test/data/*
/Makefile.pre
iOS/Resources/Info.plist
iOS/testbed/build
iOS/testbed/Python.xcframework/ios-arm64/bin
iOS/testbed/Python.xcframework/ios-arm64/include
iOS/testbed/Python.xcframework/ios-arm64/lib
iOS/testbed/Python.xcframework/ios-arm64/Python.framework
iOS/testbed/Python.xcframework/ios-arm64_x86_64-simulator/bin
iOS/testbed/Python.xcframework/ios-arm64_x86_64-simulator/include
iOS/testbed/Python.xcframework/ios-arm64_x86_64-simulator/lib
iOS/testbed/Python.xcframework/ios-arm64_x86_64-simulator/Python.framework
iOS/testbed/Python.xcframework/ios-*/bin
iOS/testbed/Python.xcframework/ios-*/include
iOS/testbed/Python.xcframework/ios-*/lib
iOS/testbed/Python.xcframework/ios-*/Python.framework
iOS/testbed/iOSTestbed/iOSTestbed-Info.plist
iOS/testbed/iOSTestbed.xcodeproj/project.xcworkspace
iOS/testbed/iOSTestbed.xcodeproj/xcuserdata
Expand Down
12 changes: 4 additions & 8 deletions Makefile.pre.in
Original file line number Diff line number Diff line change
Expand Up @@ -2863,14 +2863,10 @@ clean-retain-profile: pycremoval
-find build -type f -a ! -name '*.gc??' -exec rm -f {} ';'
-rm -f Include/pydtrace_probes.h
-rm -f profile-gen-stamp
-rm -rf iOS/testbed/Python.xcframework/ios-arm64/bin
-rm -rf iOS/testbed/Python.xcframework/ios-arm64/lib
-rm -rf iOS/testbed/Python.xcframework/ios-arm64/include
-rm -rf iOS/testbed/Python.xcframework/ios-arm64/Python.framework
-rm -rf iOS/testbed/Python.xcframework/ios-arm64_x86_64-simulator/bin
-rm -rf iOS/testbed/Python.xcframework/ios-arm64_x86_64-simulator/lib
-rm -rf iOS/testbed/Python.xcframework/ios-arm64_x86_64-simulator/include
-rm -rf iOS/testbed/Python.xcframework/ios-arm64_x86_64-simulator/Python.framework
-rm -rf iOS/testbed/Python.xcframework/ios-*/bin
-rm -rf iOS/testbed/Python.xcframework/ios-*/lib
-rm -rf iOS/testbed/Python.xcframework/ios-*/include
-rm -rf iOS/testbed/Python.xcframework/ios-*/Python.framework

.PHONY: profile-removal
profile-removal:
Expand Down
0