Skip to content

Commit 69369a7

Browse files
authored
Merge pull request rust-lang#2263 from BoxyUwU/rustc-pull2
Rustc pull
2 parents 5d65732 + d9683df commit 69369a7

File tree

4,135 files changed

+65791
-40737
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,135 files changed

+65791
-40737
lines changed

Diff for: .editorconfig

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ end_of_line = lf
99
charset = utf-8
1010
trim_trailing_whitespace = true
1111
insert_final_newline = true
12+
13+
[!src/llvm-project]
1214
indent_style = space
1315
indent_size = 4
1416

Diff for: .git-blame-ignore-revs

+2
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,5 @@ ec2cc761bc7067712ecc7734502f703fe3b024c8
2929
99cb0c6bc399fb94a0ddde7e9b38e9c00d523bad
3030
# reformat with rustfmt edition 2024
3131
c682aa162b0d41e21cc6748f4fecfe01efb69d1f
32+
# reformat with updated edition 2024
33+
1fcae03369abb4c2cc180cd5a49e1f4440a81300

Diff for: .github/workflows/ci.yml

+6
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ jobs:
7070
HEAD_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
7171
DOCKER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7272
SCCACHE_BUCKET: rust-lang-ci-sccache2
73+
SCCACHE_REGION: us-west-1
7374
CACHE_DOMAIN: ci-caches.rust-lang.org
7475
continue-on-error: ${{ matrix.continue_on_error || false }}
7576
strategy:
@@ -173,6 +174,11 @@ jobs:
173174
- name: ensure the stable version number is correct
174175
run: src/ci/scripts/verify-stable-version-number.sh
175176

177+
# Show the environment just before we run the build
178+
# This makes it easier to diagnose problems with the above install scripts.
179+
- name: show the current environment
180+
run: src/ci/scripts/dump-environment.sh
181+
176182
- name: run the build
177183
# Redirect stderr to stdout to avoid reordering the two streams in the GHA logs.
178184
run: src/ci/scripts/run-build-from-ci.sh 2>&1

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ no_llvm_build
5454
/library/target
5555
/src/bootstrap/target
5656
/src/tools/x/target
57+
# Created by `x vendor`
58+
/vendor
5759
# Created by default with `src/ci/docker/run.sh`
5860
/obj/
5961
# Created by nix dev shell / .envrc

Diff for: .gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
[submodule "src/llvm-project"]
3030
path = src/llvm-project
3131
url = https://github.com/rust-lang/llvm-project.git
32-
branch = rustc/19.1-2024-12-03
32+
branch = rustc/20.1-2025-02-13
3333
shallow = true
3434
[submodule "src/doc/embedded-book"]
3535
path = src/doc/embedded-book

0 commit comments

Comments
 (0)