Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
ca3e640
add tool to check sembr
tshepang Oct 24, 2025
7dd4509
sample output
tshepang Oct 27, 2025
cf99a9e
check on ci
tshepang Oct 24, 2025
86136ba
Merge pull request #1485 from tshepang/semantic-line-breaks
tshepang Oct 27, 2025
057f15e
sample output
tshepang Oct 27, 2025
4c0120e
handle a corner case
tshepang Oct 27, 2025
804250b
Merge pull request #2618 from rust-lang/tshepang/corner-case
tshepang Oct 27, 2025
14a9900
fix env use
tshepang Oct 27, 2025
cc1ab93
sample output
tshepang Oct 27, 2025
0c21841
fix corner case
tshepang Oct 27, 2025
7f1a1b2
Merge pull request #2619 from rust-lang/tshepang/reformat-some-tests-…
tshepang Oct 27, 2025
08235dd
about sembr tool
tshepang Oct 27, 2025
8654d0e
sembr tool: add some hints on usage
tshepang Oct 27, 2025
629aeb1
Merge pull request #2621 from rust-lang/tshepang/sembr-help
tshepang Oct 27, 2025
c6344c5
Merge pull request #2620 from rust-lang/tshepang-patch-2
tshepang Oct 27, 2025
a9c7730
contributing.md: ease copy-paste
tshepang Oct 28, 2025
1fbaa24
fix typo in autodiff docs
ZuseZ4 Oct 29, 2025
c6d1b14
Merge pull request #2623 from rust-lang/autodiff-typo
Noratrieb Oct 29, 2025
edb4cb5
Merge pull request #2622 from rust-lang/master
jieyouxu Nov 1, 2025
c850c27
Prepare for merging from rust-lang/rust
invalid-email-address Nov 3, 2025
434f17c
Merge ref 'c5dabe8cf798' from rust-lang/rust
invalid-email-address Nov 3, 2025
b72660c
Merge pull request #2625 from rust-lang/rustc-pull
tshepang Nov 3, 2025
0588be0
sembr src/tests/minicore.md
tshepang Nov 4, 2025
df4d883
date-check src/tests/minicore.md
tshepang Nov 4, 2025
18b1767
Merge pull request #2627 from rust-lang/tshepang/sembr
tshepang Nov 4, 2025
b150b0e
sembr src/contributing.md
tshepang Nov 4, 2025
2dee852
misc improvents to src/contributing.md
tshepang Nov 4, 2025
56757ab
sembr: adjust after using src/contributing.md
tshepang Nov 4, 2025
743b803
date-check src/contributing.md
tshepang Nov 4, 2025
dca1727
Merge pull request #2628 from rust-lang/tshepang/sembr
tshepang Nov 4, 2025
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
6 changes: 6 additions & 0 deletions src/doc/rustc-dev-guide/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,9 @@ jobs:
git add .
git commit -m "Deploy ${GITHUB_SHA} to gh-pages"
git push --quiet -f "https://x-token:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}" HEAD:gh-pages

- name: Check if files comply with semantic line breaks
continue-on-error: true
run: |
# using split_inclusive that uses regex feature that uses an unstable feature
RUSTC_BOOTSTRAP=1 cargo run --manifest-path ci/sembr/Cargo.toml src
1 change: 1 addition & 0 deletions src/doc/rustc-dev-guide/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
book

ci/date-check/target/
ci/sembr/target/

# Generated by check-in.sh
pulls.json
Expand Down
Loading
Loading