Skip to content

Rollup of 6 pull requests #117071

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 23 commits into from
Oct 23, 2023
Merged
Changes from 2 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
c564f81
rustdoc: align stability badge to baseline instead of bottom
notriddle Dec 13, 2022
193fec6
Preparing for merge from rustc
Oct 22, 2023
1f09dd2
Merge from rustc
Oct 22, 2023
8cbac82
clippy
RalfJung Oct 22, 2023
f6be93f
Auto merge of #3133 - rust-lang:rustup-2023-10-22, r=RalfJung
bors Oct 22, 2023
b53c34f
avoid AtomicU64 when a Cell is enough
RalfJung Oct 22, 2023
f35c36a
Auto merge of #3135 - RalfJung:nonatomic-clock, r=RalfJung
bors Oct 22, 2023
371883a
coverage: Split `FunctionCoverage` into distinct collector/finished p…
Zalathar Oct 6, 2023
86b55cc
coverage: Fetch expressions and mappings separately
Zalathar Oct 6, 2023
e985ae5
coverage: Build the global file table ahead of time
Zalathar Oct 3, 2023
88159ca
coverage: Encapsulate local-to-global file mappings
Zalathar Sep 28, 2023
de4cfbc
coverage: Encode function mappings without re-sorting them
Zalathar Sep 28, 2023
6af9fef
coverage: Emit the filenames section before encoding per-function map…
Zalathar Oct 6, 2023
dc00d03
add target csky-unknown-linux-gnuabiv2hf
Dirreke Oct 22, 2023
5454797
tidy docs
Dirreke Oct 22, 2023
bb67e0f
fix broken link: update incremental compilation url
gvozdvmozgu Oct 22, 2023
1f9f041
x.ps1: remove the check for Python from Windows Store
xobs Oct 23, 2023
e86f9b6
Rollup merge of #105666 - notriddle:notriddle/stab-baseline, r=Guilla…
matthiaskrgr Oct 23, 2023
dde77f7
Rollup merge of #117042 - Zalathar:file-table, r=cjgillot
matthiaskrgr Oct 23, 2023
fe4fde2
Rollup merge of #117044 - RalfJung:miri, r=RalfJung
matthiaskrgr Oct 23, 2023
9acb775
Rollup merge of #117049 - Dirreke:csky-unknown-linux-gunabiv2, r=bjorn3
matthiaskrgr Oct 23, 2023
2636745
Rollup merge of #117051 - gvozdvmozgu:fix-incremental-compilation-lin…
matthiaskrgr Oct 23, 2023
cec7d4a
Rollup merge of #117069 - xobs:x.ps1-remove-windows-store-check, r=al…
matthiaskrgr Oct 23, 2023
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
5 changes: 0 additions & 5 deletions x.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ foreach ($arg in $args) {

function Get-Application($app) {
$cmd = Get-Command $app -ErrorAction SilentlyContinue -CommandType Application | Select-Object -First 1
if ($cmd.source -match '.*AppData\\Local\\Microsoft\\WindowsApps\\.*exe') {
# Windows for some reason puts a `python3.exe` executable in PATH that just opens the windows store.
# Ignore it.
return $false
}
return $cmd
}

Expand Down