Skip to content

Commit 53bd2a0

Browse files
committed
Merge remote-tracking branch 'upstream/master' into fix_issue_144074
2 parents 2355f6a + 889701d commit 53bd2a0

File tree

3,463 files changed

+49805
-31232
lines changed

Some content is hidden

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

3,463 files changed

+49805
-31232
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -117,14 +117,21 @@ jobs:
117117
with:
118118
fetch-depth: 2
119119

120-
# Free up disk space on Linux by removing preinstalled components that
120+
# Free up disk space on Linux and Windows by removing preinstalled components that
121121
# we do not need. We do this to enable some of the less resource
122122
# intensive jobs to run on free runners, which however also have
123123
# less disk space.
124124
- name: free up disk space
125125
run: src/ci/scripts/free-disk-space.sh
126126
if: matrix.free_disk
127127

128+
# If we don't need to free up disk space then just report how much space we have
129+
- name: print disk usage
130+
run: |
131+
echo "disk usage:"
132+
df -h
133+
if: matrix.free_disk == false
134+
128135
# Rust Log Analyzer can't currently detect the PR number of a GitHub
129136
# Actions build on its own, so a hint in the log message is needed to
130137
# point it in the right direction.
@@ -152,9 +159,6 @@ jobs:
152159
- name: show the current environment
153160
run: src/ci/scripts/dump-environment.sh
154161

155-
- name: install rust
156-
run: src/ci/scripts/install-rust.sh
157-
158162
- name: install awscli
159163
run: src/ci/scripts/install-awscli.sh
160164

@@ -182,11 +186,6 @@ jobs:
182186
- name: install MinGW
183187
run: src/ci/scripts/install-mingw.sh
184188

185-
# Workaround for spurious ci failures after mingw install
186-
# see https://rust-lang.zulipchat.com/#narrow/channel/242791-t-infra/topic/Spurious.20bors.20CI.20failures/near/528915775
187-
- name: ensure home dir exists
188-
run: mkdir -p ~
189-
190189
- name: install ninja
191190
run: src/ci/scripts/install-ninja.sh
192191

.github/workflows/spellcheck.yml

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

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,6 @@ __pycache__/
8585

8686
## Node
8787
node_modules
88-
package-lock.json
89-
package.json
9088
/src/doc/rustc-dev-guide/mermaid.min.js
9189

9290
## Rustdoc GUI tests

0 commit comments

Comments
 (0)