Skip to content

Commit 50f1478

Browse files
committed
Auto merge of #148507 - Zalathar:rollup-vvz4knr, r=Zalathar
Rollup of 6 pull requests Successful merges: - rust-lang/rust#147355 (Add alignment parameter to `simd_masked_{load,store}`) - rust-lang/rust#147925 (Fix tests for big-endian) - rust-lang/rust#148341 (compiler: Fix a couple issues around cargo feature unification) - rust-lang/rust#148371 (Dogfood `trim_{suffix|prefix}` in compiler) - rust-lang/rust#148495 (Implement Path::is_empty) - rust-lang/rust#148502 (rustc-dev-guide subtree update) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 6251fce + bd2d124 commit 50f1478

File tree

12 files changed

+1151
-315
lines changed

12 files changed

+1151
-315
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,9 @@ jobs:
8282
git add .
8383
git commit -m "Deploy ${GITHUB_SHA} to gh-pages"
8484
git push --quiet -f "https://x-token:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}" HEAD:gh-pages
85+
86+
- name: Check if files comply with semantic line breaks
87+
continue-on-error: true
88+
run: |
89+
# using split_inclusive that uses regex feature that uses an unstable feature
90+
RUSTC_BOOTSTRAP=1 cargo run --manifest-path ci/sembr/Cargo.toml src

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
book
22

33
ci/date-check/target/
4+
ci/sembr/target/
45

56
# Generated by check-in.sh
67
pulls.json

0 commit comments

Comments
 (0)