Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync rustfmt subtree #91483

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
f99e358
Merge commit 'ea199bacef07213dbe008841b89c450e3bf0c638' into rustfmt-…
calebcartwright Nov 8, 2021
e6d1bf5
Link tracking issues in Configurations.md (#4096)
Mar 31, 2020
eee8f04
refactor: cleanup duplicative Impl handling code
calebcartwright Nov 17, 2021
0023abf
tests: add cases for type alias issues
calebcartwright Nov 18, 2021
2c442cc
fix: correct some type alias issues
calebcartwright Nov 18, 2021
196e676
Preserve normalized comments after last list item
mujpao Nov 19, 2021
826eba8
Add a few missing tracking issues in Configurations.md (#5084)
karyon Nov 20, 2021
4389a4c
fix: do not wrap reference-style doc links
domodwyer Nov 19, 2021
f99469d
Change how the fn params span is calculated
estebank Nov 24, 2021
243cec7
Update README.md
bluenote10 Nov 24, 2021
ea042b9
Add more tests for comments in lists
mujpao Nov 24, 2021
67fd9ec
Run Windows, Linux, and Mac CI tests with nightly and stable channels
ytmimi Nov 24, 2021
a21f1b6
Conditionally compile tests based on CFG_RELEASE_CHANNEL env var
ytmimi Nov 27, 2021
0fc846f
refactor: maintain more AST info when formatting a RHS
calebcartwright Nov 28, 2021
1f28683
Update nightly only test with #[nightly_only_test] attribute
ytmimi Nov 29, 2021
ec46ffd
Determine when new comment lines are needed for itemized blocks
ytmimi Nov 19, 2021
e305322
Merge remote-tracking branch 'upstream/master' into subtree-sync-2021…
calebcartwright Dec 3, 2021
8da8371
Merge pull request #5121 from calebcartwright/subtree-sync-2021-12-02
calebcartwright Dec 3, 2021
f6ade7c
Merge commit '8da837185714cefbb261e93e9846afb11c1dc60e' into sync-rus…
calebcartwright Dec 3, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/tools/rustfmt/.github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ on:
jobs:
test:
runs-on: ubuntu-latest
name: (${{ matrix.target }}, nightly)
name: (${{ matrix.target }}, ${{ matrix.cfg_release_channel }})
env:
CFG_RELEASE_CHANNEL: ${{ matrix.cfg_release_channel }}
strategy:
# https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usage-limits
# There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
Expand All @@ -20,6 +22,7 @@ jobs:
target: [
x86_64-unknown-linux-gnu,
]
cfg_release_channel: [nightly, stable]

steps:
- name: checkout
Expand Down
5 changes: 4 additions & 1 deletion src/tools/rustfmt/.github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@ jobs:
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners#supported-runners-and-hardware-resources
# macOS Catalina 10.15
runs-on: macos-latest
name: (${{ matrix.target }}, nightly)
name: (${{ matrix.target }}, ${{ matrix.cfg_release_channel }})
env:
CFG_RELEASE_CHANNEL: ${{ matrix.cfg_release_channel }}
strategy:
fail-fast: false
matrix:
target: [
x86_64-apple-darwin,
]
cfg_release_channel: [nightly, stable]

steps:
- name: checkout
Expand Down
5 changes: 4 additions & 1 deletion src/tools/rustfmt/.github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ on:
jobs:
test:
runs-on: windows-latest
name: (${{ matrix.target }}, nightly)
name: (${{ matrix.target }}, ${{ matrix.cfg_release_channel }})
env:
CFG_RELEASE_CHANNEL: ${{ matrix.cfg_release_channel }}
strategy:
# https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usage-limits
# There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
Expand All @@ -23,6 +25,7 @@ jobs:
x86_64-pc-windows-gnu,
x86_64-pc-windows-msvc,
]
cfg_release_channel: [nightly, stable]

steps:
# The Windows runners have autocrlf enabled by default
Expand Down
Loading