-
Notifications
You must be signed in to change notification settings - Fork 2
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 by Bors] - TY-2366 build ios prod #135
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
github-actions
bot
added
the
work-in-progress
The author is still working on this PR
label
Feb 11, 2022
Robert-Steiner
changed the base branch from
main
to
TY-2361-build-ios-in-bors-ci
February 11, 2022 18:13
Robert-Steiner
force-pushed
the
TY-2366-build-ios-prod
branch
9 times, most recently
from
February 11, 2022 18:42
13a6726
to
8261767
Compare
Robert-Steiner
force-pushed
the
TY-2361-build-ios-in-bors-ci
branch
from
February 11, 2022 19:51
f969b6d
to
34e0413
Compare
Robert-Steiner
force-pushed
the
TY-2366-build-ios-prod
branch
13 times, most recently
from
February 14, 2022 09:27
37216ab
to
fa4a78b
Compare
Robert-Steiner
force-pushed
the
TY-2361-build-ios-in-bors-ci
branch
from
February 14, 2022 11:21
262929a
to
0bb4dcc
Compare
Robert-Steiner
force-pushed
the
TY-2366-build-ios-prod
branch
2 times, most recently
from
February 14, 2022 16:53
f353425
to
7c09138
Compare
Please rebase on top of #140 when merged |
bors bot
pushed a commit
that referenced
this pull request
Feb 15, 2022
In #135 we have an error that `hyper` cannot be used together with lto. We forked hyper and removed the the configuration that wasn't allowing it. This pr points to that version. Running `RUSTFLAGS="-Ccodegen-units=1 -Clto=on -Cembed-bitcode=yes" just compile-android-local` works correctly.
Robert-Steiner
force-pushed
the
TY-2361-build-ios-in-bors-ci
branch
from
February 15, 2022 09:53
0bb4dcc
to
360caff
Compare
Robert-Steiner
force-pushed
the
TY-2366-build-ios-prod
branch
from
February 15, 2022 09:55
7c09138
to
88abb5c
Compare
Robert-Steiner
force-pushed
the
TY-2361-build-ios-in-bors-ci
branch
from
February 15, 2022 10:27
360caff
to
50f5451
Compare
Robert-Steiner
force-pushed
the
TY-2366-build-ios-prod
branch
2 times, most recently
from
February 15, 2022 10:28
0e5f2e4
to
135d088
Compare
works 🚀 |
github-actions
bot
added
ready-for-review
The PR can be reviewed
and removed
work-in-progress
The author is still working on this PR
labels
Feb 15, 2022
Robert-Steiner
force-pushed
the
TY-2366-build-ios-prod
branch
from
February 15, 2022 11:54
135d088
to
a7bd005
Compare
acrrd
approved these changes
Feb 15, 2022
bors merge |
bors bot
pushed a commit
that referenced
this pull request
Feb 15, 2022
Ticket: - [TY-2366] **Update:** lto error was addressed in #140 --- can't use `lto` because of: rust-lang/rust#51009 running: `RUSTFLAGS="-Ccodegen-units=1 -Clto=on -Cembed-bitcode=yes" just compile-ios-local` gives the error: ``` error: lto can only be run for executables, cdylibs and static library outputs error: could not compile `hyper` due to previous error ``` but `-Ccodegen-units=1` alone still decreases the size from 221mb to 144mb [TY-2366]: https://xainag.atlassian.net/browse/TY-2366?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
Pull request successfully merged into main. Build succeeded: |
bors
bot
changed the title
TY-2366 build ios prod
[Merged by Bors] - TY-2366 build ios prod
Feb 15, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Ticket:
Update: lto error was addressed in #140
can't use
lto
because of:rust-lang/rust#51009
running:
RUSTFLAGS="-Ccodegen-units=1 -Clto=on -Cembed-bitcode=yes" just compile-ios-local
gives the error:
but
-Ccodegen-units=1
alone still decreases the size from 221mb to 144mb