Skip to content

Commit 67492b9

Browse files
authored
Merge branch 'rust-lang:master' into steps_between
2 parents 4ab4aa8 + 3d1dba8 commit 67492b9

File tree

5,913 files changed

+127889
-82354
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,913 files changed

+127889
-82354
lines changed

.github/ISSUE_TEMPLATE/blank_issue.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/tracking_issue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ for larger features an implementation could be broken up into multiple PRs.
4646

4747
[stabilization-guide]: https://rustc-dev-guide.rust-lang.org/stabilization_guide.html#stabilization-pr
4848
[doc-guide]: https://rustc-dev-guide.rust-lang.org/stabilization_guide.html#documentation-prs
49-
[nightly-style-procedure]: https://github.com/rust-lang/style-team/blob/master/nightly-style-procedure.md
49+
[nightly-style-procedure]: https://github.com/rust-lang/style-team/blob/main/nightly-style-procedure.md
5050
[Style Guide]: https://github.com/rust-lang/rust/tree/master/src/doc/style-guide
5151

5252
### Unresolved Questions

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ tracking issue or there are none, feel free to ignore this.
77
This PR will get automatically assigned to a reviewer. In case you would like
88
a specific user to review your work, you can assign it to them by using
99
10-
r? <reviewer name>
10+
r\? <reviewer name> (with the `\` removed)
1111
-->
1212
<!-- homu-ignore:end -->

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,14 @@ jobs:
104104
with:
105105
fetch-depth: 2
106106

107+
# Free up disk space on Linux by removing preinstalled components that
108+
# we do not need. We do this to enable some of the less resource
109+
# intensive jobs to run on free runners, which however also have
110+
# less disk space.
111+
- name: free up disk space
112+
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be
113+
if: matrix.free_disk
114+
107115
# Rust Log Analyzer can't currently detect the PR number of a GitHub
108116
# Actions build on its own, so a hint in the log message is needed to
109117
# point it in the right direction.
@@ -122,6 +130,9 @@ jobs:
122130
# which then uses log commands to actually set them.
123131
EXTRA_VARIABLES: ${{ toJson(matrix.env) }}
124132

133+
- name: setup upstream remote
134+
run: src/ci/scripts/setup-upstream-remote.sh
135+
125136
- name: ensure the channel matches the target branch
126137
run: src/ci/scripts/verify-channel.sh
127138

@@ -191,6 +202,11 @@ jobs:
191202
- name: create github artifacts
192203
run: src/ci/scripts/create-doc-artifacts.sh
193204

205+
- name: print disk usage
206+
run: |
207+
echo "disk usage:"
208+
df -h
209+
194210
- name: upload artifacts to github
195211
uses: actions/upload-artifact@v4
196212
with:
@@ -212,6 +228,16 @@ jobs:
212228
# erroring about invalid credentials instead.
213229
if: github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1'
214230

231+
- name: upload job metrics to DataDog
232+
if: needs.calculate_matrix.outputs.run_type != 'pr'
233+
env:
234+
DATADOG_SITE: datadoghq.com
235+
DATADOG_API_KEY: ${{ secrets.DATADOG_API_KEY }}
236+
DD_GITHUB_JOB_NAME: ${{ matrix.name }}
237+
run: |
238+
npm install -g @datadog/datadog-ci@^2.x.x
239+
python3 src/ci/scripts/upload-build-metrics.py build/cpu-usage.csv
240+
215241
# This job isused to tell bors the final status of the build, as there is no practical way to detect
216242
# when a workflow is successful listening to webhooks only in our current bors implementation (homu).
217243
outcome:

.github/workflows/dependencies.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,11 @@ jobs:
6161
rustup toolchain install --no-self-update --profile minimal $TOOLCHAIN
6262
rustup default $TOOLCHAIN
6363
64-
- name: cargo update
64+
- name: cargo update compiler & tools
6565
# Remove first line that always just says "Updating crates.io index"
66-
run: cargo update 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log
66+
run: |
67+
echo -e "\ncompiler & tools dependencies:" >> cargo_update.log
68+
cargo update 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log
6769
- name: cargo update library
6870
run: |
6971
echo -e "\nlibrary dependencies:" >> cargo_update.log

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Session.vim
2525
.favorites.json
2626
.settings/
2727
.vs/
28+
.dir-locals.el
2829

2930
## Tool
3031
.valgrindrc
@@ -56,6 +57,8 @@ build/
5657
/src/tools/x/target
5758
# Created by default with `src/ci/docker/run.sh`
5859
/obj/
60+
# Created by nix dev shell / .envrc
61+
src/tools/nix-dev-shell/flake.lock
5962

6063
## ICE reports
6164
rustc-ice-*.txt
@@ -85,4 +88,13 @@ package.json
8588
## Rustdoc GUI tests
8689
tests/rustdoc-gui/src/**.lock
8790

91+
## direnv
92+
.envrc
93+
.direnv/
94+
95+
## nix
96+
flake.nix
97+
flake.lock
98+
default.nix
99+
88100
# Before adding new lines, see the comment at the top.

.mailmap

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Alexis Beingessner <[email protected]>
3131
Alfie John <[email protected]> Alfie John <[email protected]>
3232
Alona Enraght-Moony <[email protected]> <[email protected]>
3333
Alona Enraght-Moony <[email protected]> <[email protected]>
34+
Alona Enraght-Moony <[email protected]> <[email protected]>
3435
3536
3637
@@ -74,6 +75,8 @@ Ben Striegel <[email protected]>
7475
Benjamin Jackman <[email protected]>
7576
Benoît Cortier <[email protected]>
7677
Bheesham Persaud <[email protected]> Bheesham Persaud <[email protected]>
78+
79+
7780
7881
blake2-ppc <[email protected]> <blake2-ppc>
7982
blyxyas <[email protected]> Alejandra González <[email protected]>
@@ -171,6 +174,7 @@ Dzmitry Malyshau <[email protected]>
171174
172175
Ed Barnard <[email protected]>
173176
Eduard-Mihai Burtescu <[email protected]>
177+
Eduard-Mihai Burtescu <[email protected]> <[email protected]>
174178
Eduardo Bautista <[email protected]> <=>
175179
176180
Eduardo Broto <[email protected]>
@@ -185,6 +189,7 @@ Erick Tryzelaar <[email protected]> <[email protected]>
185189
Erik Desjardins <[email protected]>
186190
Erik Jensen <[email protected]>
187191
Erin Power <[email protected]>
192+
188193
189194
190195
Esteban Küber <[email protected]>
@@ -197,6 +202,7 @@ F001 <[email protected]>
197202
Fabian Kössel <[email protected]>
198203
Falco Hirschenberger <[email protected]> <[email protected]>
199204
Felix S. Klock II <[email protected]> Felix S Klock II <[email protected]>
205+
200206
Félix Saparelli <[email protected]>
201207
Flaper Fesp <[email protected]>
202208
Florian Berger <[email protected]>
@@ -244,7 +250,7 @@ Irina Popa <[email protected]>
244250
Ivan Ivaschenko <[email protected]>
245251
ivan tkachenko <[email protected]>
246252
J. J. Weber <[email protected]>
247-
Jack Huey <[email protected]>
253+
248254
249255
Jacob Greenfield <[email protected]>
250256
@@ -255,6 +261,7 @@ Jakub Adam Wieczorek <[email protected]>
255261
Jakub Adam Wieczorek <[email protected]> <[email protected]>
256262
Jakub Adam Wieczorek <[email protected]> <[email protected]>
257263
Jakub Adam Wieczorek <[email protected]> <[email protected]>
264+
258265
James [Undefined] <[email protected]>
259266
260267
@@ -279,6 +286,7 @@ Jerry Hardee <[email protected]>
279286
Jesús Rubio <[email protected]>
280287
Jethro Beekman <[email protected]>
281288
Jian Zeng <[email protected]>
289+
282290
283291
284292
Jihyun Yu <[email protected]> Jihyun Yu <[email protected]>
@@ -289,6 +297,7 @@ John Clements <[email protected]> <[email protected]>
289297
John Hodge <[email protected]> John Hodge <[email protected]>
290298
John Hörnvall <[email protected]>
291299
John Kåre Alsaker <[email protected]>
300+
John Kåre Alsaker <[email protected]> <[email protected]>
292301
John Talling <[email protected]>
293302
John Van Enk <[email protected]>
294303
Jonas Tepe <[email protected]>
@@ -311,6 +320,7 @@ Josh Driver <[email protected]>
311320
Josh Holmer <[email protected]>
312321
313322
323+
314324
Julian Knodt <[email protected]>
315325
316326
Junyoung Cho <[email protected]>
@@ -364,6 +374,7 @@ Lukas Lueg <[email protected]>
364374
Luke Metz <[email protected]>
365375
366376
377+
367378
368379
Maik Klein <[email protected]>
369380
Malo Jaffré <[email protected]>
@@ -405,6 +416,7 @@ mental <[email protected]>
405416
406417
Michael Williams <[email protected]>
407418
Michael Woerister <michaelwoerister@posteo> <michaelwoerister@gmail>
419+
Michael Woerister <michaelwoerister@posteo> <[email protected]>
408420
Michael Woerister <michaelwoerister@posteo> <[email protected]>
409421
Michael Woerister <michaelwoerister@posteo> <[email protected]>
410422
Michael Zhang <[email protected]>
@@ -418,6 +430,7 @@ Ms2ger <[email protected]> <[email protected]>
418430
msizanoen1 <[email protected]>
419431
Mukilan Thiagarajan <[email protected]>
420432
Nadrieril Feneanar <[email protected]>
433+
Nadrieril Feneanar <[email protected]> <[email protected]>
421434
422435
423436
Nathan Ringo <[email protected]>
@@ -438,6 +451,8 @@ Niclas Schwarzlose <[email protected]>
438451
Nicolas Abram <[email protected]>
439452
Nicole Mazzuca <[email protected]>
440453
454+
455+
441456
442457
443458
@@ -456,6 +471,7 @@ Oliver Scherer <[email protected]> <[email protected]>
456471
457472
458473
474+
459475
Oliver Scherer <[email protected]>
460476
461477
Onur Özkan <[email protected]>
@@ -492,6 +508,7 @@ Raphaël Huchet <[email protected]>
492508
rChaser53 <[email protected]>
493509
Rémy Rakic <[email protected]>
494510
511+
495512
Renato Riccieri Santos Zannon <[email protected]>
496513
497514
Ricky Hosfelt <[email protected]>
@@ -521,6 +538,7 @@ Samuel Tardieu <[email protected]>
521538
Santiago Pastorino <[email protected]>
522539
Santiago Pastorino <[email protected]> <[email protected]>
523540
Scott McMurray <[email protected]>
541+
524542
Scott Olson <[email protected]> Scott Olson <[email protected]>
525543
Sean Gillespie <[email protected]> swgillespie <[email protected]>
526544
Seiichi Uchida <[email protected]>
@@ -532,6 +550,7 @@ Shyam Sundar B <[email protected]>
532550
Simon Barber-Dueck <[email protected]> Simon BD <simon@server>
533551
534552
Simonas Kazlauskas <[email protected]> Simonas Kazlauskas <[email protected]>
553+
Simonas Kazlauskas <[email protected]> <[email protected]>
535554
Siva Prasad <[email protected]>
536555
537556
Srinivas Reddy Thatiparthy <[email protected]>
@@ -552,6 +571,8 @@ Tatsuyuki Ishi <[email protected]>
552571
553572
Tero Hänninen <[email protected]> Tero Hänninen <[email protected]>
554573
574+
575+
555576
Theo Belaire <[email protected]> Theo Belaire <[email protected]>
556577
Theodore Luo Wang <[email protected]>
557578
Thiago Pontes <[email protected]> thiagopnts <[email protected]>
@@ -589,7 +610,8 @@ Waffle Lapkin <[email protected]>
589610
590611
whitequark <[email protected]>
591612
592-
Wim Looman <[email protected]>
613+
614+
593615
Without Boats <[email protected]>
594616
595617
Xinye Tao <[email protected]>

0 commit comments

Comments
 (0)