Skip to content

Commit 9d2bb7f

Browse files
committed
Merge from rust-lang/rust
2 parents 35d0bcd + 3d5d7a2 commit 9d2bb7f

File tree

4,829 files changed

+93985
-58279
lines changed

Some content is hidden

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

4,829 files changed

+93985
-58279
lines changed

.github/pull_request_template.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!-- homu-ignore:start -->
2+
<!--
3+
If this PR is related to an unstable feature or an otherwise tracked effort,
4+
please link to the relevant tracking issue here. If you don't know of a related
5+
tracking issue or there are none, feel free to ignore this.
6+
7+
This PR will get automatically assigned to a reviewer. In case you would like
8+
a specific user to review your work, you can assign it to them by using
9+
10+
r​? <reviewer name>
11+
-->
12+
<!-- homu-ignore:end -->

.github/workflows/ci.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ concurrency:
3838
cancel-in-progress: true
3939
env:
4040
TOOLSTATE_REPO: "https://github.com/rust-lang-nursery/rust-toolstate"
41+
# This will be empty in PR jobs.
42+
TOOLSTATE_REPO_ACCESS_TOKEN: ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}
4143
jobs:
4244
# The job matrix for `calculate_matrix` is defined in src/ci/github-actions/jobs.yml.
4345
# It calculates which jobs should be executed, based on the data of the ${{ github }} context.
@@ -93,8 +95,6 @@ jobs:
9395
path-type: inherit
9496
install: >
9597
make
96-
dos2unix
97-
diffutils
9898
9999
- name: disable git crlf conversion
100100
run: git config --global core.autocrlf false
@@ -155,9 +155,6 @@ jobs:
155155
- name: checkout submodules
156156
run: src/ci/scripts/checkout-submodules.sh
157157

158-
- name: install MSYS2
159-
run: src/ci/scripts/install-msys2.sh
160-
161158
- name: install MinGW
162159
run: src/ci/scripts/install-mingw.sh
163160

@@ -190,7 +187,6 @@ jobs:
190187
env:
191188
AWS_ACCESS_KEY_ID: ${{ env.CACHES_AWS_ACCESS_KEY_ID }}
192189
AWS_SECRET_ACCESS_KEY: ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}
193-
TOOLSTATE_REPO_ACCESS_TOKEN: ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}
194190

195191
- name: create github artifacts
196192
run: src/ci/scripts/create-doc-artifacts.sh
@@ -240,4 +236,5 @@ jobs:
240236
shell: bash
241237
if: needs.calculate_matrix.outputs.run_type == 'auto'
242238
env:
243-
TOOLSTATE_REPO_ACCESS_TOKEN: ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}
239+
TOOLSTATE_ISSUES_API_URL: https://api.github.com/repos/rust-lang/rust/issues
240+
TOOLSTATE_PUBLISH: 1

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ build/
5252
/src/tools/x/target
5353
# Created by default with `src/ci/docker/run.sh`
5454
/obj/
55+
/rustc-ice*
5556

5657
## Temporary files
5758
*~

.gitmodules

+5-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
[submodule "src/llvm-project"]
3434
path = src/llvm-project
3535
url = https://github.com/rust-lang/llvm-project.git
36-
branch = rustc/18.0-2024-02-13
36+
branch = rustc/18.1-2024-05-19
3737
shallow = true
3838
[submodule "src/doc/embedded-book"]
3939
path = src/doc/embedded-book
@@ -43,3 +43,7 @@
4343
path = library/backtrace
4444
url = https://github.com/rust-lang/backtrace-rs.git
4545
shallow = true
46+
[submodule "src/tools/rustc-perf"]
47+
path = src/tools/rustc-perf
48+
url = https://github.com/rust-lang/rustc-perf.git
49+
shallow = true

.mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,7 @@ Markus Westerlind <marwes91@gmail.com> Markus <marwes91@gmail.com>
379379
Martin Carton <cartonmartin+git@gmail.com>
380380
Martin Habovštiak <martin.habovstiak@gmail.com>
381381
Martin Hafskjold Thoresen <martinhath@gmail.com>
382+
Martin Nordholts <martin.nordholts@codetale.se> <enselic@gmail.com>
382383
Matej Lach <matej.lach@gmail.com> Matej Ľach <matej.lach@gmail.com>
383384
Mateusz Mikuła <mati865@gmail.com>
384385
Mateusz Mikuła <mati865@gmail.com> <mati865@users.noreply.github.com>

0 commit comments

Comments
 (0)