-
-
Notifications
You must be signed in to change notification settings - Fork 29
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
macos redirector app + CI #66
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's untangle this a bit: In this PR, let's only add the macos-redirector app + a GitHub Actions CI to build it.
build.rs
is meant to copy the final (compiled) app into mitmproxy_rs
so that it's included as part of the wheel. Copying to /Applications
will not help us on the target device. Let's leave build.rs
out of the picture here for this PR. :-)
b4334a5
to
26e1be8
Compare
616ac2f
to
98b8e0b
Compare
bb3fac1
to
aa2e58e
Compare
47b6bae
to
fb9e6a2
Compare
.github/workflows/ci.yml
Outdated
- if: ${{ runner.os == 'macOS' }} | ||
run: | | ||
xcodebuild -project macos-redirector/MitmproxyAppleTunnel.xcodeproj -destination 'platform=macOS' CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED="NO" CODE_SIGN_ENTITLEMENTS="" CODE_SIGNING_ALLOWED="NO" -scheme MitmproxyAppleExtension build | ||
xcodebuild -project macos-redirector/MitmproxyAppleTunnel.xcodeproj -destination 'platform=macOS' CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED="NO" CODE_SIGN_ENTITLEMENTS="" CODE_SIGNING_ALLOWED="NO" -scheme MitmproxyAppleTunnel build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This means binaries will not be signed at all, including for builds from the main branch? That needs to happen for them to work, no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉
Description
The pull request includes the following:
.app
filebuild.rs
To copy the executable to the right place so it can be launched properly