Skip to content

Rollup of 9 pull requests #135917

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 20 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
8dec09f
support wasm inline assembly in naked functions
folkertdev Jan 15, 2025
bcf478b
work around the `wasm32-unknown-unknown` ABI being broken
folkertdev Jan 17, 2025
bf5e634
proc_macro: add `#![warn(unreachable_pub)]`
Urgau Jan 9, 2025
939b704
test: add `#![warn(unreachable_pub)]`
Urgau Jan 9, 2025
00381ea
Make it possible to build GCC on CI
Kobzol Jan 2, 2025
9b70b8b
CI: free disk with in-tree script instead of GitHub Action
marcoieni Jan 21, 2025
aef640a
Only assert the `Parser` size on specific arches
cuviper Jan 22, 2025
eb3b3fe
ci: use 8 core arm runner for dist-aarch64-linux
marcoieni Jan 22, 2025
2a544ab
Target modifiers (special marked options) are recorded in metainfo an…
azhogin Nov 17, 2024
87f7535
Reword "crate not found" resolve message
estebank Nov 18, 2024
6b06aa6
Enable kernel sanitizers for aarch64-unknown-none-softfloat
workingjubilee Jan 22, 2025
ff39ce9
Rollup merge of #133138 - azhogin:azhogin/target-modifiers, r=davidtw…
jhpratt Jan 23, 2025
76f57a5
Rollup merge of #133154 - estebank:issue-133137, r=wesleywiser
jhpratt Jan 23, 2025
f05e0c1
Rollup merge of #135366 - Urgau:unreach_pub-std-2, r=cuviper
jhpratt Jan 23, 2025
6e33327
Rollup merge of #135638 - Kobzol:gcc-ci, r=onur-ozkan
jhpratt Jan 23, 2025
781e01f
Rollup merge of #135648 - folkertdev:naked-asm-wasm, r=bjorn3
jhpratt Jan 23, 2025
c7413a6
Rollup merge of #135827 - marcoieni:free-space-script, r=Kobzol
jhpratt Jan 23, 2025
a91ac7d
Rollup merge of #135855 - cuviper:parser-size, r=wesleywiser
jhpratt Jan 23, 2025
b03ec03
Rollup merge of #135878 - marcoieni:dist-aarch64-linux-8c, r=Kobzol
jhpratt Jan 23, 2025
30177b8
Rollup merge of #135905 - workingjubilee:softly-sanitize-aarch64-floa…
jhpratt Jan 23, 2025
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
4 changes: 3 additions & 1 deletion src/ci/github-actions/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ runners:
- &job-aarch64-linux
os: ubuntu-22.04-arm

- &job-aarch64-linux-8c
os: ubuntu-22.04-arm64-8core-32gb
envs:
env-x86_64-apple-tests: &env-x86_64-apple-tests
SCRIPT: ./x.py --stage 2 test --skip tests/ui --skip tests/rustdoc -- --exact
Expand Down Expand Up @@ -142,7 +144,7 @@ auto:
- name: dist-aarch64-linux
env:
CODEGEN_BACKENDS: llvm,cranelift
<<: *job-aarch64-linux
<<: *job-aarch64-linux-8c

- name: dist-android
<<: *job-linux-4c
Expand Down