Skip to content

Commit 1affa7c

Browse files
authored
Merge pull request #1950 from Kobzol/pull-nov-2025
rustc-pull
2 parents fbd84e2 + a1584c0 commit 1affa7c

File tree

596 files changed

+55456
-26399
lines changed

Some content is hidden

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

596 files changed

+55456
-26399
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ jobs:
5656
# Install a pinned rustc commit to avoid surprises
5757
- name: Install Rust toolchain
5858
run: |
59-
RUSTC_VERSION=`cat rust-version`
60-
rustup-toolchain-install-master ${RUSTC_VERSION} -c rust-src -c rustfmt
59+
RUSTC_VERSION=$(cat rust-version)
60+
rustup-toolchain-install-master ${RUSTC_VERSION} -c cargo -c rust-src -c rustfmt
6161
rustup default ${RUSTC_VERSION}
6262
6363
# Emulate a nightly toolchain, because the toolchain installed above does not have "nightly"
@@ -98,9 +98,9 @@ jobs:
9898
run: |
9999
rustup update --no-self-update stable
100100
rustup default stable
101-
rustup component add --toolchain stable rust-src clippy
102-
# We always use a nightly rustfmt, regardless of channel, because we need
103-
# --file-lines.
101+
rustup component add --toolchain stable rust-src clippy rustfmt
102+
# We also install a nightly rustfmt, because we use `--file-lines` in
103+
# a test.
104104
rustup toolchain install nightly --profile minimal --component rustfmt
105105
# https://github.com/actions-rust-lang/setup-rust-toolchain/blob/main/rust.json
106106
- name: Install Rust Problem Matcher
@@ -293,7 +293,7 @@ jobs:
293293
timeout-minutes: 10
294294
env:
295295
FORCE_COLOR: 1
296-
TYPOS_VERSION: v1.28.3
296+
TYPOS_VERSION: v1.38.1
297297
steps:
298298
- name: download typos
299299
run: curl -LsSf https://github.com/crate-ci/typos/releases/download/$TYPOS_VERSION/typos-$TYPOS_VERSION-x86_64-unknown-linux-musl.tar.gz | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
RUSTFLAGS: "-D warnings -W unreachable-pub"
1717
RUSTUP_MAX_RETRIES: 10
1818
FETCH_DEPTH: 0 # pull in the tags for the version string
19-
MACOSX_DEPLOYMENT_TARGET: 13.0
19+
MACOSX_DEPLOYMENT_TARGET: 14.0
2020
ZIG_VERSION: 0.13.0
2121
ZIGBUILD_VERSION: 0.19.8
2222

@@ -52,7 +52,7 @@ jobs:
5252
target: arm-unknown-linux-gnueabihf
5353
zig_target: arm-unknown-linux-gnueabihf.2.28
5454
code-target: linux-armhf
55-
- os: macos-13
55+
- os: macos-14
5656
target: x86_64-apple-darwin
5757
code-target: darwin-x64
5858
pgo: clap-rs/clap@v4.5.36

.github/workflows/rustc-pull.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ jobs:
1111
if: github.repository == 'rust-lang/rust-analyzer'
1212
uses: rust-lang/josh-sync/.github/workflows/rustc-pull.yml@main
1313
with:
14+
github-app-id: ${{ vars.APP_CLIENT_ID }}
1415
zulip-stream-id: 185405
1516
zulip-bot-email: "rust-analyzer-ci-bot@rust-lang.zulipchat.com"
1617
pr-base-branch: master
1718
branch-name: rustc-pull
1819
secrets:
1920
zulip-api-token: ${{ secrets.ZULIP_API_TOKEN }}
20-
token: ${{ secrets.GITHUB_TOKEN }}
21+
github-app-secret: ${{ secrets.APP_PRIVATE_KEY }}

.typos.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ makro = "makro"
3232
trivias = "trivias"
3333
thir = "thir"
3434
jod = "jod"
35+
tructure = "tructure"
3536

3637
[default.extend-identifiers]
3738
anc = "anc"

0 commit comments

Comments
 (0)