Skip to content
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

Rollup of 9 pull requests #131887

Merged
merged 23 commits into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
da44e3f
Start test case for `rjmp` regression test
jfrimmel Oct 14, 2024
652ba66
Add check-annotations ensuring correct label
jfrimmel Oct 15, 2024
db6c736
Allow the compiler to select any register
jfrimmel Oct 15, 2024
ab00841
Convert to a `rmake`-test
jfrimmel Oct 15, 2024
bb8db13
Simplify test and make it more reliable
jfrimmel Oct 15, 2024
24810b0
Partially stabilize const_pin
GKFX Sep 9, 2024
3ed5d55
Fix predicate signatures in retain_mut docs
collinoc Oct 17, 2024
a35ed2f
Use `rust-lld` instead of `avr-gcc` as the linker
jfrimmel Oct 15, 2024
cdacdae
remove outdated documentation for `repeat_n`
AnthonyMikh Oct 17, 2024
7b2320c
Avoid shadowing user provided types or type aliases in `thread_local!`
jieyouxu Oct 18, 2024
275ec06
Default to the medium code model on OpenHarmony LoongArch target
heiher Oct 18, 2024
e20636a
Add entropy source for RTEMS
thesummer Oct 16, 2024
4277160
checktools.sh: add link to issue for more context about disabled Miri…
RalfJung Oct 18, 2024
cdbf28a
Dont ICE when computing coverage of synthetic async closure body
compiler-errors Oct 16, 2024
dae3076
Rollup merge of #130136 - GKFX:stabilize-const-pin, r=dtolnay
jieyouxu Oct 18, 2024
ebff167
Rollup merge of #131755 - jfrimmel:avr-rjmp-offset-regression-test, r…
jieyouxu Oct 18, 2024
951c0cd
Rollup merge of #131774 - thesummer:rtems-add-getentropy, r=joboet
jieyouxu Oct 18, 2024
aae4730
Rollup merge of #131802 - compiler-errors:fnonce-coverage, r=Zalathar
jieyouxu Oct 18, 2024
759820e
Rollup merge of #131809 - collinoc:fix-retain-mut-docs, r=jhpratt
jieyouxu Oct 18, 2024
64bf99b
Rollup merge of #131858 - AnthonyMikh:AnthonyMikh/repeat_n-is-not-tha…
jieyouxu Oct 18, 2024
af85d52
Rollup merge of #131866 - jieyouxu:thread_local, r=jhpratt
jieyouxu Oct 18, 2024
9a664a0
Rollup merge of #131874 - heiher:loong-ohos-medium, r=jieyouxu
jieyouxu Oct 18, 2024
80a8f7b
Rollup merge of #131877 - RalfJung:checktools-comment, r=ChrisDenton
jieyouxu Oct 18, 2024
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
2 changes: 2 additions & 0 deletions src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ case $HOST_TARGET in
# "error: cannot produce cdylib for ... as the target ... does not support these crate types".
# Only run "pass" tests, which is quite a bit faster.
#FIXME: Re-enable this once CI issues are fixed
# See <https://github.com/rust-lang/rust/issues/127883>
# For now, these tests are moved to `x86_64-msvc-ext2` in `src/ci/github-actions/jobs.yml`.
#python3 "$X_PY" test --stage 2 src/tools/miri --target aarch64-apple-darwin --test-args pass
#python3 "$X_PY" test --stage 2 src/tools/miri --target i686-pc-windows-gnu --test-args pass
;;
Expand Down
2 changes: 2 additions & 0 deletions src/ci/github-actions/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,8 @@ auto:
<<: *job-windows-8c

# Temporary builder to workaround CI issues
# See <https://github.com/rust-lang/rust/issues/127883>
#FIXME: Remove this, and re-enable the same tests in `checktools.sh`, once CI issues are fixed.
- image: x86_64-msvc-ext2
env:
SCRIPT: >
Expand Down
Loading