-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update README Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add one more clippy lint from Polkadot-SDK Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update CI dependencies Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use workspace version 1.1.0 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Cleanup Cargo.toml and rename glutton-runtime Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add GPL-3.0 license Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use version 1.0.0 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update .gitignore and rustfmt Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Delete empty CHANGELOG Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update Cargo.lock Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Set authors to the Fellowship Co-authored-by: Bastian Köcher <git@kchr.de> * Add the `on-chain-release-build` feature to all runtimes * Rework release action * Test the action * Don't use deprecated command * Use correct name * Try to get it running * Try * Fixes * ... * Try * Now? * Rename * Revert and let it only run on main --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Bastian Köcher <git@kchr.de> Co-authored-by: Bastian Köcher <info@kchr.de>
- Loading branch information
1 parent
dcb9f62
commit bfcabce
Showing
22 changed files
with
867 additions
and
307 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[ | ||
{ "name": "polkadot", "package": "polkadot-runtime", "path": "relay/polkadot" }, | ||
{ "name": "kusama", "package": "staging-kusama-runtime", "path": "relay/kusama" }, | ||
{ "name": "glutton-kusama", "package": "glutton-kusama-runtime", "path": "system-parachains/gluttons/glutton-kusama" }, | ||
{ "name": "asset-hub-kusama", "package": "asset-hub-kusama-runtime", "path": "system-parachains/asset-hubs/asset-hub-kusama" }, | ||
{ "name": "asset-hub-polkadot", "package": "asset-hub-polkadot-runtime", "path": "system-parachains/asset-hubs/asset-hub-polkadot" }, | ||
{ "name": "bridge-hub-kusama", "package": "bridge-hub-kusama-runtime", "path": "system-parachains/bridge-hubs/bridge-hub-kusama" }, | ||
{ "name": "bridge-hub-polkadot", "package": "bridge-hub-polkadot-runtime", "path": "system-parachains/bridge-hubs/bridge-hub-polkadot" }, | ||
{ "name": "collectives-polkadot", "package": "collectives-polkadot-runtime", "path": "system-parachains/collectives/collectives-polkadot" } | ||
] |
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 |
---|---|---|
@@ -1,12 +1,39 @@ | ||
**/target/ | ||
**/*.rs.bk | ||
*.swp | ||
.wasm-binaries | ||
runtime/wasm/target/ | ||
**/._* | ||
!polkadot.service | ||
.cargo-remote.toml | ||
.direnv/ | ||
.DS_Store | ||
.env* | ||
.idea | ||
.local | ||
.vscode | ||
.wasm-binaries | ||
*.adoc | ||
*.bin | ||
*.iml | ||
*.orig | ||
*.rej | ||
*.swp | ||
**/._* | ||
**/.criterion/ | ||
**/*.rs.bk | ||
**/chains/ | ||
**/hfuzz_target/ | ||
**/hfuzz_workspace/ | ||
**/node_modules | ||
**/target/ | ||
**/wip/*.stderr | ||
/.cargo/config | ||
/.envrc | ||
artifacts | ||
bin/node-template/Cargo.lock | ||
nohup.out | ||
polkadot_argument_parsing | ||
polkadot.* | ||
!polkadot.service | ||
.DS_Store | ||
.env | ||
pwasm-alloc/Cargo.lock | ||
pwasm-libc/Cargo.lock | ||
release-artifacts | ||
release.json | ||
rls*.log | ||
runtime/wasm/target/ | ||
substrate.code-workspace | ||
target/ |
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
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
Oops, something went wrong.