-
Notifications
You must be signed in to change notification settings - Fork 766
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 ao-fix-issue-64
* master: (256 commits) fix chunk fetching network compatibility zombienet test (#6988) chore: delete repeat words (#7034) Print taplo version in CI (#7041) Implement cumulus StorageWeightReclaim as wrapping transaction extension + frame system ReclaimWeight (#6140) Make `TransactionExtension` tuple of tuple transparent for implication (#7028) Replace duplicated whitelist with whitelisted_storage_keys (#7024) [WIP] Fix networking-benchmarks (#7036) [docs] Fix release naming (#7032) migrate pallet-mixnet to umbrella crate (#6986) Improve remote externalities logging (#7021) Fix polkadot sdk doc. (#7022) Remove warning log from frame-omni-bencher CLI (#7020) [pallet-revive] fix file case (#6981) Add workflow for networking benchmarks (#7029) [CI] Skip SemVer on R0-silent and update docs (#6285) correct path in cumulus README (#7001) sync: Send already connected peers to new subscribers (#7011) Excluding chainlink domain for link checker CI (#6524) pallet-bounties: Fix benchmarks for 0 ED (#7013) Log peerset set ID -> protocol name mapping (#7005) ...
- Loading branch information
Showing
1,895 changed files
with
85,765 additions
and
45,465 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
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,28 @@ | ||
name: "stop all workflows" | ||
description: "Action stops all workflows in a PR to save compute resources." | ||
inputs: | ||
app-id: | ||
description: "App id" | ||
required: true | ||
app-key: | ||
description: "App token" | ||
required: true | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Worfklow stopper - Generate token | ||
uses: actions/create-github-app-token@v1 | ||
id: app-token | ||
with: | ||
app-id: ${{ inputs.app-id }} | ||
private-key: ${{ inputs.app-key }} | ||
owner: "paritytech" | ||
repositories: "workflow-stopper" | ||
- name: Workflow stopper - Stop all workflows | ||
uses: octokit/[email protected] | ||
with: | ||
route: POST /repos/paritytech/workflow-stopper/actions/workflows/stopper.yml/dispatches | ||
ref: main | ||
inputs: '${{ format(''{{ "github_sha": "{0}", "github_repository": "{1}", "github_ref_name": "{2}", "github_workflow_id": "{3}", "github_job_name": "{4}" }}'', github.event.pull_request.head.sha, github.repository, github.ref_name, github.run_id, github.job) }}' | ||
env: | ||
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} |
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 |
---|---|---|
@@ -1 +1 @@ | ||
IMAGE="docker.io/paritytech/ci-unified:bullseye-1.81.0-2024-09-11-v202409111034" | ||
IMAGE="docker.io/paritytech/ci-unified:bullseye-1.81.0-2024-11-19-v202411281558" |
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
Oops, something went wrong.