-
Notifications
You must be signed in to change notification settings - Fork 700
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 max-assets
- Loading branch information
Showing
956 changed files
with
27,353 additions
and
55,065 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
|
||
# Wrapper for building with musl. | ||
# | ||
# See comments for musl-gcc in this repo. | ||
|
||
g++ "$@" |
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,13 @@ | ||
#!/bin/sh | ||
|
||
# Wrapper for building with musl. | ||
# | ||
# musl unfortunately requires a musl-enabled C compiler (musl-gcc) to be | ||
# installed, which can be kind of a pain to get installed depending on the | ||
# distro. That's not a very good user experience. | ||
# | ||
# The real musl-gcc wrapper sets the correct system include paths for linking | ||
# with musl libc library. Since this is not actually used to link any binaries | ||
# it should most likely work just fine. | ||
|
||
gcc "$@" |
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,50 @@ | ||
# Config file for lychee link checker: <https://github.com/lycheeverse/lychee> | ||
# Run with `lychee -c .config/lychee.toml ./**/*.rs ./**/*.prdoc` | ||
|
||
cache = true | ||
max_cache_age = "1d" | ||
max_redirects = 10 | ||
max_retries = 6 | ||
|
||
# Exclude localhost et.al. | ||
exclude_all_private = true | ||
|
||
# Treat these codes as success condition: | ||
accept = [ | ||
# Ok | ||
200, | ||
|
||
# Rate limited - GitHub likes to throw this. | ||
429 | ||
] | ||
|
||
exclude_path = [ "./target" ] | ||
|
||
exclude = [ | ||
# Place holders (no need to fix these): | ||
"http://visitme/", | ||
"https://visitme/", | ||
|
||
# TODO <https://github.com/paritytech/polkadot-sdk/issues/134> | ||
"https://docs.substrate.io/main-docs/build/custom-rpc/#public-rpcs", | ||
"https://docs.substrate.io/rustdocs/latest/sp_api/macro.decl_runtime_apis.html", | ||
"https://github.com/ipfs/js-ipfs-bitswap/blob/", | ||
"https://github.com/paritytech/polkadot-sdk/substrate/frame/timestamp", | ||
"https://github.com/paritytech/substrate/frame/fast-unstake", | ||
"https://github.com/zkcrypto/bls12_381/blob/e224ad4ea1babfc582ccd751c2bf128611d10936/src/test-data/mod.rs", | ||
"https://polkadot.network/the-path-of-a-parachain-block/", | ||
"https://research.web3.foundation/en/latest/polkadot/BABE/Babe/#6-practical-results", | ||
"https://research.web3.foundation/en/latest/polkadot/block-production/Babe.html", | ||
"https://research.web3.foundation/en/latest/polkadot/block-production/Babe.html#-6.-practical-results", | ||
"https://research.web3.foundation/en/latest/polkadot/networking/3-avail-valid.html#topology", | ||
"https://research.web3.foundation/en/latest/polkadot/NPoS/3.%20Balancing.html", | ||
"https://research.web3.foundation/en/latest/polkadot/overview/2-token-economics.html", | ||
"https://research.web3.foundation/en/latest/polkadot/overview/2-token-economics.html#inflation-model", | ||
"https://research.web3.foundation/en/latest/polkadot/slashing/npos.html", | ||
"https://research.web3.foundation/en/latest/polkadot/Token%20Economics.html#inflation-model", | ||
"https://rpc.polkadot.io/", | ||
"https://w3f.github.io/parachain-implementers-guide/node/approval/approval-distribution.html", | ||
"https://w3f.github.io/parachain-implementers-guide/node/index.html", | ||
"https://w3f.github.io/parachain-implementers-guide/protocol-chain-selection.html", | ||
"https://w3f.github.io/parachain-implementers-guide/runtime/session_info.html", | ||
] |
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,120 @@ | ||
rules: | ||
- name: CI files | ||
condition: | ||
include: | ||
- ^\.gitlab-ci\.yml | ||
- ^docker/.* | ||
- ^\.github/.* | ||
- ^\.gitlab/.* | ||
- ^\.config/nextest.toml | ||
- ^\.cargo/.* | ||
exclude: | ||
- ^./gitlab/pipeline/zombienet.* | ||
minApprovals: 2 | ||
type: basic | ||
teams: | ||
- ci | ||
- release-engineering | ||
|
||
- name: Audit rules | ||
type: basic | ||
condition: | ||
include: | ||
- ^polkadot/runtime\/(kusama|polkadot|common)\/.* | ||
- ^polkadot/primitives/src\/.+\.rs$ | ||
- ^substrate/primitives/.* | ||
- ^substrate/frame/.* | ||
exclude: | ||
- ^polkadot/runtime\/(kusama|polkadot)\/src\/weights\/.+\.rs$ | ||
- ^substrate\/frame\/.+\.md$ | ||
minApprovals: 1 | ||
allowedToSkipRule: | ||
teams: | ||
- core-devs | ||
teams: | ||
- srlabs | ||
|
||
- name: Core developers | ||
countAuthor: true | ||
condition: | ||
include: | ||
- .* | ||
# excluding files from 'Runtime files' and 'CI files' rules | ||
exclude: | ||
- ^polkadot/runtime/(kusama|polkadot)/src/[^/]+\.rs$ | ||
- ^cumulus/parachains/runtimes/assets/(asset-hub-kusama|asset-hub-polkadot)/src/[^/]+\.rs$ | ||
- ^cumulus/parachains/runtimes/bridge-hubs/(bridge-hub-kusama|bridge-hub-polkadot)/src/[^/]+\.rs$ | ||
- ^cumulus/parachains/runtimes/collectives/collectives-polkadot/src/[^/]+\.rs$ | ||
- ^cumulus/parachains/common/src/[^/]+\.rs$ | ||
- ^substrate/frame/(?!.*(nfts/.*|uniques/.*|babe/.*|grandpa/.*|beefy|merkle-mountain-range/.*|contracts/.*|election|nomination-pools/.*|staking/.*|aura/.*)) | ||
- ^polkadot/runtime/(kusama|polkadot)/src/[^/]+\.rs$ | ||
- ^\.gitlab-ci\.yml | ||
- ^docker/.* | ||
- ^\.github/.* | ||
- ^\.gitlab/.* | ||
- ^\.config/nextest.toml | ||
- ^\.cargo/.* | ||
minApprovals: 2 | ||
type: basic | ||
teams: | ||
- core-devs | ||
|
||
# cumulus | ||
- name: Runtime files cumulus | ||
countAuthor: true | ||
condition: | ||
include: | ||
- ^cumulus/parachains/runtimes/assets/(asset-hub-kusama|asset-hub-polkadot)/src/[^/]+\.rs$ | ||
- ^cumulus/parachains/runtimes/bridge-hubs/(bridge-hub-kusama|bridge-hub-polkadot)/src/[^/]+\.rs$ | ||
- ^cumulus/parachains/runtimes/collectives/collectives-polkadot/src/[^/]+\.rs$ | ||
- ^cumulus/parachains/common/src/[^/]+\.rs$ | ||
type: and-distinct | ||
reviewers: | ||
- minApprovals: 1 | ||
teams: | ||
- locks-review | ||
- minApprovals: 1 | ||
teams: | ||
- polkadot-review | ||
|
||
# if there are any changes in the bridges subtree (in case of backport changes back to bridges repo) | ||
- name: Bridges subtree files | ||
type: basic | ||
condition: | ||
include: | ||
- ^bridges/.* | ||
minApprovals: 1 | ||
teams: | ||
- bridges-core | ||
|
||
# substrate | ||
|
||
- name: FRAME coders substrate | ||
condition: | ||
include: | ||
- ^substrate/frame/(?!.*(nfts/.*|uniques/.*|babe/.*|grandpa/.*|beefy|merkle-mountain-range/.*|contracts/.*|election|nomination-pools/.*|staking/.*|aura/.*)) | ||
type: "and" | ||
reviewers: | ||
- minApprovals: 2 | ||
teams: | ||
- core-devs | ||
- minApprovals: 1 | ||
teams: | ||
- frame-coders | ||
|
||
# Protection of THIS file | ||
- name: Review Bot | ||
condition: | ||
include: | ||
- review-bot\.yml | ||
type: "and" | ||
reviewers: | ||
- minApprovals: 1 | ||
teams: | ||
- opstooling | ||
- minApprovals: 1 | ||
teams: | ||
- locks-review | ||
- minApprovals: 1 | ||
teams: | ||
- ci |
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,40 @@ | ||
name: Check links | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "*.rs" | ||
- "*.prdoc" | ||
- ".github/workflows/check-links.yml" | ||
- ".config/lychee.toml" | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
|
||
permissions: | ||
packages: read | ||
|
||
jobs: | ||
link-checker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Restore lychee cache | ||
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 (7. Sep 2023) | ||
with: | ||
path: .lycheecache | ||
key: cache-lychee-${{ github.sha }} | ||
# This should restore from the most recent one: | ||
restore-keys: cache-lychee- | ||
|
||
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 (22. Sep 2023) | ||
|
||
- name: Lychee link checker | ||
uses: lycheeverse/lychee-action@2ac9f030ccdea0033e2510a23a67da2a2da98492 # for v1.8.0 (15. May 2023) | ||
with: | ||
args: >- | ||
--config .config/lychee.toml | ||
--no-progress | ||
'./**/*.rs' | ||
'./**/*.prdoc' | ||
fail: true | ||
env: | ||
# To bypass GitHub rate-limit: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_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
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,31 @@ | ||
name: Review PR | ||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
- review_requested | ||
- review_request_removed | ||
- ready_for_review | ||
pull_request_review: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
review-approvals: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Generate token | ||
id: team_token | ||
uses: tibdex/github-app-token@v1 | ||
with: | ||
app_id: ${{ secrets.REVIEW_APP_ID }} | ||
private_key: ${{ secrets.REVIEW_APP_KEY }} | ||
- name: "Evaluates PR reviews and assigns reviewers" | ||
uses: paritytech/review-bot@v2.0.1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
team-token: ${{ steps.team_token.outputs.token }} | ||
checks-token: ${{ steps.team_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 |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
.env* | ||
.idea | ||
.local | ||
.lycheecache | ||
.vscode | ||
.wasm-binaries | ||
*.adoc | ||
|
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
Oops, something went wrong.