This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 379
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin' into gav-xcm-v3
- Loading branch information
Showing
311 changed files
with
18,129 additions
and
6,739 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,20 @@ | ||
--- | ||
name: Release Checklist for Client | ||
about: Release Checklist for Client | ||
title: Release Checklist for Client {{ env.VERSION }} | ||
--- | ||
|
||
# Release Checklist - Client | ||
|
||
### Client Release | ||
|
||
- [ ] build a new `polkadot-parachain` binary and publish it to S3 | ||
- [ ] new `polkadot-parachain` version has [run on the network](../../docs/release.md#burnin) | ||
without issue for at least 12h | ||
- [ ] a draft release has been created in the [Github Releases page](https://github.com/paritytech/cumulus/releases) with the relevant release-notes | ||
- [ ] the [build artifacts](../../docs/release.md#build-artifacts) have been added to the | ||
draft-release. | ||
|
||
--- | ||
|
||
Read more about the [release documentation](../../docs/release.md). |
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: Release Checklist for Runtime | ||
about: Release Checklist for Runtime | ||
title: Release Checklist for Runtime {{ env.VERSION }} | ||
--- | ||
|
||
# Release Checklist - Runtimes | ||
|
||
## Runtimes Release | ||
|
||
### Codebase | ||
These checks should be performed on the codebase. | ||
|
||
- [ ] the [`spec_version`](https://github.com/paritytech/cumulus/blob/master/docs/release.md#spec-version) has been incremented since the | ||
last release for any native runtimes from any existing use on public (non-private/test) networks | ||
- [ ] previously [completed migrations](https://github.com/paritytech/cumulus/blob/master/docs/release.md#old-migrations-removed) are | ||
removed for any public (non-private/test) networks | ||
- [ ] No migrations added in the last release that would need to be removed | ||
- [ ] pallet and [extrinsic ordering](https://github.com/paritytech/cumulus/blob/master/docs/release.md#extrinsic-ordering--storage) as well as `SignedExtension`s have stayed | ||
the same. Bump `transaction_version` otherwise | ||
- [ ] the [benchmarks](https://github.com/paritytech/ci_cd/wiki/Benchmarks:-cumulus) ran | ||
- [ ] the weights have been updated for any modified runtime logic | ||
- [ ] the various pieces of XCM config are sane | ||
|
||
### On the release branch | ||
|
||
The following checks can be performed after we have forked off to the release- | ||
candidate branch or started an additional release candidate branch (rc-2, rc-3, etc) | ||
|
||
- [ ] Verify [new migrations](https://github.com/paritytech/cumulus/blob/master/docs/release.md#new-migrations) complete successfully, and the | ||
runtime state is correctly updated for any public (non-private/test) | ||
networks | ||
- [ ] Run [integration tests](https://github.com/paritytech/cumulus/blob/master/docs/release.md#integration-tests), and make sure they pass. | ||
- [ ] Push runtime upgrade to Westmint and verify network stability | ||
|
||
|
||
### Github | ||
|
||
- [ ] Check that a draft release has been created at the [Github Releases page](https://github.com/paritytech/cumulus/releases) with relevant [release | ||
notes](https://github.com/paritytech/cumulus/blob/master/docs/release.md#release-notes) | ||
- [ ] Check that [build artifacts](https://github.com/paritytech/cumulus/blob/master/docs/release.md#build-artifacts) have been added to the | ||
draft-release. | ||
|
||
--- | ||
|
||
Read more about the [release documentation](https://github.com/paritytech/cumulus/blob/master/docs/release.md). |
This file was deleted.
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
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,22 @@ | ||
name: Release branch check | ||
on: | ||
push: | ||
branches: | ||
- release-**v[0-9]+.[0-9]+.[0-9]+ # client | ||
- release-**v[0-9]+ # runtimes | ||
- polkadot-v[0-9]+.[0-9]+.[0-9]+ # cumulus code | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
check_branch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Run check | ||
shell: bash | ||
run: ./scripts/ci/github/check-rel-br |
Oops, something went wrong.