-
Notifications
You must be signed in to change notification settings - Fork 798
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 feat/state-diff-guard
- Loading branch information
Showing
258 changed files
with
10,730 additions
and
5,845 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,30 @@ | ||
# If there are new issues related to the async backing feature, | ||
# add it to the parachain team's board and set a custom "meta" field. | ||
|
||
name: Add selected issues to Parachain team board | ||
on: | ||
issues: | ||
types: | ||
- labeled | ||
|
||
jobs: | ||
add-parachain-issues: | ||
if: github.event.label.name == 'T16-async_backing' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Generate token | ||
id: generate_token | ||
uses: tibdex/[email protected] | ||
with: | ||
app_id: ${{ secrets.PROJECT_APP_ID }} | ||
private_key: ${{ secrets.PROJECT_APP_KEY }} | ||
- name: Sync issues | ||
uses: paritytech/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
PROJECT_TOKEN: ${{ steps.generate_token.outputs.token }} | ||
project: 119 # Parachain team board | ||
project_field: 'meta' | ||
project_value: 'async backing' | ||
labels: | | ||
T16-async_backing |
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,46 @@ | ||
name: test-github-actions | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
merge_group: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
CARGO_NET_GIT_FETCH_WITH_CLI: true | ||
|
||
jobs: | ||
test-linux-stable-int: | ||
runs-on: arc-runners-polkadot-sdk | ||
timeout-minutes: 30 | ||
container: | ||
image: "docker.io/paritytech/ci-unified:bullseye-1.77.0-2024-04-10-v20240408" | ||
env: | ||
RUSTFLAGS: "-C debug-assertions -D warnings" | ||
RUST_BACKTRACE: 1 | ||
WASM_BUILD_NO_COLOR: 1 | ||
WASM_BUILD_RUSTFLAGS: "-C debug-assertions -D warnings" | ||
# Ensure we run the UI tests. | ||
RUN_UI_TESTS: 1 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: script | ||
run: WASM_BUILD_NO_COLOR=1 time cargo test -p staging-node-cli --release --locked -- --ignored | ||
quick-benchmarks: | ||
runs-on: arc-runners-polkadot-sdk | ||
timeout-minutes: 30 | ||
container: | ||
image: "docker.io/paritytech/ci-unified:bullseye-1.77.0-2024-04-10-v20240408" | ||
env: | ||
RUSTFLAGS: "-C debug-assertions -D warnings" | ||
RUST_BACKTRACE: "full" | ||
WASM_BUILD_NO_COLOR: 1 | ||
WASM_BUILD_RUSTFLAGS: "-C debug-assertions -D warnings" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: script | ||
run: time cargo run --locked --release -p staging-node-cli --bin substrate-node --features runtime-benchmarks --quiet -- benchmark pallet --chain dev --pallet "*" --extrinsic "*" --steps 2 --repeat 1 --quiet |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.