mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-24 10:05:48 +00:00
Renaming of the Asset Hubs (#2755)
This commit is contained in:
@@ -6,7 +6,7 @@ on:
|
|||||||
inputs:
|
inputs:
|
||||||
reference_url:
|
reference_url:
|
||||||
description: The WebSocket url of the reference node
|
description: The WebSocket url of the reference node
|
||||||
default: wss://kusama-statemine-rpc.paritytech.net
|
default: wss://kusama-asset-hub-rpc.polkadot.io
|
||||||
required: true
|
required: true
|
||||||
binary_url:
|
binary_url:
|
||||||
description: A url to a Linux binary for the node containing the runtime to test
|
description: A url to a Linux binary for the node containing the runtime to test
|
||||||
@@ -28,7 +28,7 @@ jobs:
|
|||||||
BIN_URL: ${{github.event.inputs.binary_url}}
|
BIN_URL: ${{github.event.inputs.binary_url}}
|
||||||
REF_URL: ${{github.event.inputs.reference_url}}
|
REF_URL: ${{github.event.inputs.reference_url}}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
||||||
|
|
||||||
- name: Fetch binary
|
- name: Fetch binary
|
||||||
|
|||||||
+6
-6
@@ -153,9 +153,9 @@ jobs:
|
|||||||
NO_CACHE: 1
|
NO_CACHE: 1
|
||||||
DEBUG: 1
|
DEBUG: 1
|
||||||
SHELL_DIGEST: ${{ github.workspace}}/shell-srtool-json/shell-srtool-digest.json
|
SHELL_DIGEST: ${{ github.workspace}}/shell-srtool-json/shell-srtool-digest.json
|
||||||
WESTMINT_DIGEST: ${{ github.workspace}}/westmint-srtool-json/westmint-srtool-digest.json
|
ASSET_HUB_WESTEND_DIGEST: ${{ github.workspace}}/asset-hub-westend-srtool-json/asset-hub-westend-srtool-digest.json
|
||||||
STATEMINE_DIGEST: ${{ github.workspace}}/statemine-srtool-json/statemine-srtool-digest.json
|
ASSET_HUB_KUSAMA_DIGEST: ${{ github.workspace}}/asset-hub-kusama-srtool-json/asset-hub-kusama-srtool-digest.json
|
||||||
STATEMINT_DIGEST: ${{ github.workspace}}/statemint-srtool-json/statemint-srtool-digest.json
|
ASSET_HUB_POLKADOT_DIGEST: ${{ github.workspace}}/asset-hub-polkadot-srtool-json/asset-hub-polkadot-srtool-digest.json
|
||||||
BRIDGE_HUB_ROCOCO_DIGEST: ${{ github.workspace}}/bridge-hub-rococo-srtool-json/bridge-hub-rococo-srtool-digest.json
|
BRIDGE_HUB_ROCOCO_DIGEST: ${{ github.workspace}}/bridge-hub-rococo-srtool-json/bridge-hub-rococo-srtool-digest.json
|
||||||
BRIDGE_HUB_KUSAMA_DIGEST: ${{ github.workspace}}/bridge-hub-kusama-srtool-json/bridge-hub-kusama-srtool-digest.json
|
BRIDGE_HUB_KUSAMA_DIGEST: ${{ github.workspace}}/bridge-hub-kusama-srtool-json/bridge-hub-kusama-srtool-digest.json
|
||||||
BRIDGE_HUB_POLKADOT_DIGEST: ${{ github.workspace}}/bridge-hub-polkadot-srtool-json/bridge-hub-polkadot-srtool-digest.json
|
BRIDGE_HUB_POLKADOT_DIGEST: ${{ github.workspace}}/bridge-hub-polkadot-srtool-json/bridge-hub-polkadot-srtool-digest.json
|
||||||
@@ -171,9 +171,9 @@ jobs:
|
|||||||
|
|
||||||
if [ "$RELEASE_TYPE" != "client" ]; then
|
if [ "$RELEASE_TYPE" != "client" ]; then
|
||||||
ls -al $SHELL_DIGEST || true
|
ls -al $SHELL_DIGEST || true
|
||||||
ls -al $WESTMINT_DIGEST || true
|
ls -al $ASSET_HUB_WESTEND_DIGEST || true
|
||||||
ls -al $STATEMINE_DIGEST || true
|
ls -al $ASSET_HUB_KUSAMA_DIGEST || true
|
||||||
ls -al $STATEMINT_DIGEST || true
|
ls -al $ASSET_HUB_POLKADOT_DIGEST || true
|
||||||
ls -al $BRIDGE_HUB_ROCOCO_DIGEST || true
|
ls -al $BRIDGE_HUB_ROCOCO_DIGEST || true
|
||||||
ls -al $BRIDGE_HUB_KUSAMA_DIGEST || true
|
ls -al $BRIDGE_HUB_KUSAMA_DIGEST || true
|
||||||
ls -al $BRIDGE_HUB_POLKADOT_DIGEST || true
|
ls -al $BRIDGE_HUB_POLKADOT_DIGEST || true
|
||||||
|
|||||||
@@ -84,9 +84,9 @@ end
|
|||||||
|
|
||||||
POLKADOT_COLLECTIVES_DIGEST = ENV['COLLECTIVES_POLKADOT_DIGEST'] || 'digests/collectives-polkadot-srtool-digest.json'
|
POLKADOT_COLLECTIVES_DIGEST = ENV['COLLECTIVES_POLKADOT_DIGEST'] || 'digests/collectives-polkadot-srtool-digest.json'
|
||||||
SHELL_DIGEST = ENV['SHELL_DIGEST'] || 'digests/shell-srtool-digest.json'
|
SHELL_DIGEST = ENV['SHELL_DIGEST'] || 'digests/shell-srtool-digest.json'
|
||||||
WESTMINT_DIGEST = ENV['WESTMINT_DIGEST'] || 'digests/westmint-srtool-digest.json'
|
ASSET_HUB_WESTEND_DIGEST = ENV['ASSET_HUB_WESTEND_DIGEST'] || 'digests/westmint-srtool-digest.json'
|
||||||
STATEMINE_DIGEST = ENV['STATEMINE_DIGEST'] || 'digests/statemine-srtool-digest.json'
|
ASSET_HUB_KUSAMA_DIGEST = ENV['ASSET_HUB_KUSAMA_DIGEST'] || 'digests/statemine-srtool-digest.json'
|
||||||
STATEMINT_DIGEST = ENV['STATEMINT_DIGEST'] || 'digests/statemint-srtool-digest.json'
|
ASSET_HUB_POLKADOT_DIGEST = ENV['ASSET_HUB_POLKADOT_DIGEST'] || 'digests/statemint-srtool-digest.json'
|
||||||
BRIDGE_HUB_ROCOCO_DIGEST = ENV['BRIDGE_HUB_ROCOCO_DIGEST'] || 'digests/bridge-hub-rococo-srtool-digest.json'
|
BRIDGE_HUB_ROCOCO_DIGEST = ENV['BRIDGE_HUB_ROCOCO_DIGEST'] || 'digests/bridge-hub-rococo-srtool-digest.json'
|
||||||
BRIDGE_HUB_KUSAMA_DIGEST = ENV['BRIDGE_HUB_KUSAMA_DIGEST'] || 'digests/bridge-hub-kusama-srtool-digest.json'
|
BRIDGE_HUB_KUSAMA_DIGEST = ENV['BRIDGE_HUB_KUSAMA_DIGEST'] || 'digests/bridge-hub-kusama-srtool-digest.json'
|
||||||
BRIDGE_HUB_POLKADOT_DIGEST = ENV['BRIDGE_HUB_POLKADOT_DIGEST'] || 'digests/bridge-hub-polkadot-srtool-digest.json'
|
BRIDGE_HUB_POLKADOT_DIGEST = ENV['BRIDGE_HUB_POLKADOT_DIGEST'] || 'digests/bridge-hub-polkadot-srtool-digest.json'
|
||||||
@@ -146,9 +146,9 @@ else
|
|||||||
substrate_data,
|
substrate_data,
|
||||||
polkadot_data,
|
polkadot_data,
|
||||||
SHELL_DIGEST,
|
SHELL_DIGEST,
|
||||||
WESTMINT_DIGEST,
|
ASSET_HUB_WESTEND_DIGEST,
|
||||||
STATEMINE_DIGEST,
|
ASSET_HUB_KUSAMA_DIGEST,
|
||||||
STATEMINT_DIGEST,
|
ASSET_HUB_POLKADOT_DIGEST,
|
||||||
ROCOCO_PARA_DIGEST,
|
ROCOCO_PARA_DIGEST,
|
||||||
CANVAS_KUSAMA_DIGEST,
|
CANVAS_KUSAMA_DIGEST,
|
||||||
POLKADOT_COLLECTIVES_DIGEST,
|
POLKADOT_COLLECTIVES_DIGEST,
|
||||||
|
|||||||
Reference in New Issue
Block a user