forked from paritytech/polkadot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into outbound-queue-v2
- Loading branch information
Showing
112 changed files
with
5,885 additions
and
5,119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/bin/bash | ||
echo "Running script relative to `pwd`" | ||
# Find all README.docify.md files | ||
DOCIFY_FILES=$(find . -name "README.docify.md") | ||
|
||
# Initialize a variable to track directories needing README regeneration | ||
NEED_REGENERATION="" | ||
|
||
for file in $DOCIFY_FILES; do | ||
echo "Processing $file" | ||
|
||
# Get the directory containing the docify file | ||
DIR=$(dirname "$file") | ||
|
||
# Go to the directory and run cargo build | ||
cd "$DIR" | ||
cargo check --features generate-readme || { echo "Readme generation for $DIR failed. Ensure the crate compiles successfully and has a `generate-readme` feature which guards markdown compilation in the crate as follows: https://docs.rs/docify/latest/docify/macro.compile_markdown.html#conventions." && exit 1; } | ||
|
||
# Check if README.md has any uncommitted changes | ||
git diff --exit-code README.md | ||
|
||
if [ $? -ne 0 ]; then | ||
echo "Error: Found uncommitted changes in $DIR/README.md" | ||
NEED_REGENERATION="$NEED_REGENERATION $DIR" | ||
fi | ||
|
||
# Return to the original directory | ||
cd - > /dev/null | ||
done | ||
|
||
# Check if any directories need README regeneration | ||
if [ -n "$NEED_REGENERATION" ]; then | ||
echo "The following directories need README regeneration:" | ||
echo "$NEED_REGENERATION" | ||
exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
title: "Support more types in TypeWithDefault" | ||
|
||
doc: | ||
- audience: Runtime Dev | ||
description: | | ||
This PR supports more integer types to be used with `TypeWithDefault` and makes `TypeWithDefault<u8/u16/u32, ..>: BaseArithmetic` satisfied | ||
|
||
crates: | ||
- name: sp-runtime | ||
bump: patch |
Oops, something went wrong.