-
Notifications
You must be signed in to change notification settings - Fork 135
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
rewrite circleci config #558
Conversation
trinity-1686a
commented
May 1, 2019
•
edited
Loading
edited
- use better syntax
- grcov for coverage
- automatize crowdin interactions
and try using grcov for coverage
@@ -1,3 +1,3 @@ | |||
[target.x86_64-unknown-linux-gnu] | |||
# link dead code for coverage, attempt to reduce linking memory usage to not get killed | |||
rustflags = ["-Clink-dead-code", "-Clink-args=-Xlinker --no-keep-memory -Xlinker --reduce-memory-overheads"] | |||
rustflags = ["-Clink-args=-Xlinker --no-keep-memory -Xlinker --reduce-memory-overheads"] |
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.
Don't we need to link dead code anymore?
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.
It's somewhere it this line now https://github.com/Plume-org/Plume/pull/558/files#diff-1d37e48f9ceff6d8030570cd36286a61R74 , and having that here was an error : release builds were run with linked dead code too (not a problem, but it makes for bigger binaries)
Codecov Report
@@ Coverage Diff @@
## master #558 +/- ##
==========================================
- Coverage 41.96% 35.05% -6.91%
==========================================
Files 70 67 -3
Lines 8839 7825 -1014
Branches 0 1876 +1876
==========================================
- Hits 3709 2743 -966
+ Misses 5130 4323 -807
- Partials 0 759 +759 |
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.
😵
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.
Seems to work as expected (sorry for the long time, I didn't saw this was ready for review). Thank you!