10000 Rollup of 8 pull requests by Centril · Pull Request #64626 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 8 pull requests #64626

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

Closed
wants to merge 24 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e608549
Filter out stmts made for the redundant_semicolon lint when pretty-pr…
nathanwhit Sep 12, 2019
96526d4
Add test for redundant_semicolon lint interaction with proc macro attrs
nathanwhit Sep 12, 2019
194d357
Document `From` trait for `LhsExpr`
crgl Sep 3, 2019
8112f71
rustbuild: Turn down compression on exe installers
alexcrichton Sep 19, 2019
1ab5593
factor out pluralisation remains after #64280
Sep 19, 2019
fde8cfe
rustbuild: Turn down compression on msi installers
alexcrichton Sep 19, 2019
255dd3f
rustbuild: Improve output of `dist` step
alexcrichton Sep 19, 2019
02e3fb8
When possible point at argument causing item obligation failure
estebank Sep 16, 2019
fa496c9
Ignore obligations coming from desugared call spans
estebank Sep 16, 2019
5976e0e
Review comment: move to its own method
estebank Sep 16, 2019
2fbd692
When possible, suggest fn call
estebank Sep 16, 2019
c1ed439
review comments
estebank Sep 18, 2019
09f05d2
review comments
estebank Sep 19, 2019
d64c90d
remove duplicated code
estebank Sep 19, 2019
3db2c13
Add Compatibility Notes to RELEASES.md for 1.38.0
XAMPPRocky Sep 19, 2019
c34d9e6
add comments
estebank Sep 19, 2019
bd4090b
Rollup merge of #64136 - crgl:doc-from-parser-lhs, r=Centril
Centril Sep 20, 2019
906f74c
Rollup merge of #64342 - glorv:master, r=varkor
Centril Sep 20, 2019
fa5d8ab
Rollup merge of #64387 - nathanwhit:redundant-semi-fix, r=varkor
Centril Sep 20, 2019
c54aa52
Rollup merge of #64498 - estebank:point-at-arg, r=Centril
Centril Sep 20, 2019
539aaff
Rollup merge of #64615 - alexcrichton:smaller-exe, r=Mark-Simulacrum
Centril Sep 20, 2019
5a667aa
Rollup merge of #64617 - alexcrichton:smaller-msi, r=Mark-Simulacrum
Centril Sep 20, 2019
0c5f9a9
Rollup merge of #64618 - alexcrichton:improve-dist-output, r=Mark-Sim…
Centril Sep 20, 2019
5c610c8
Rollup merge of #64621 - XAMPPRocky:relnotes, r=Mark-Simulacrum
Centril Sep 20, 2019
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
rustbuild: Turn down compression on msi installers
This is the same as #64615 except applied to our MSI installers. The
same fix is applied effectively bringing these installers in line with
the gz tarball installers, which are about 3x faster to produce locally
and likely much faster to produce on CI.
  • Loading branch information
alexcrichton committed Sep 19, 2019
commit fde8cfe130db3826b88247318551d34d2bb63276
2 changes: 1 addition & 1 deletion src/etc/installer/msi/rust.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
</Upgrade>

<!-- Specifies a single cab file to be embedded in the installer's .msi. -->
<MediaTemplate EmbedCab="yes" CompressionLevel="high" />
<MediaTemplate EmbedCab="yes" CompressionLevel="mszip" />

<!-- Send a WM_SETTINGCHANGE message to tell processes like explorer to update their
environments so any new command prompts get the updated %PATH% -->
Expand Down
0