mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 11:58:01 +00:00
rename polkadot-collator to polkadot-parachain (#1241)
* rename polkadot-collator to polkadot-parachain Not every node has to be a collator. * Update README.md Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * rename docker file * Update .github/workflows/extrinsic-ordering-check-from-bin.yml Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Versioning scheme that tracks polkadot relay chain but allows for patch releases by having a 0 at the end. (`-patch1` patch naming schemes were discussed but they were judged to cause downstream packagers pain.) * update name * update lock file Co-authored-by: Chevdor <chevdor@users.noreply.github.com>
This commit is contained in:
@@ -10,7 +10,7 @@ on:
|
||||
required: true
|
||||
binary_url:
|
||||
description: A url to a Linux binary for the node containing the runtime to test
|
||||
default: https://github.com/paritytech/cumulus/releases/download/statemine_v3/polkadot-collator
|
||||
default: https://releases.parity.io/cumulus/polkadot-v0.9.21/polkadot-parachain
|
||||
required: true
|
||||
chain:
|
||||
description: The name of the chain under test. Usually, you would pass a local chain
|
||||
@@ -33,17 +33,17 @@ jobs:
|
||||
run: |
|
||||
echo Fetching $BIN_URL
|
||||
wget $BIN_URL
|
||||
chmod a+x polkadot-collator
|
||||
./polkadot-collator --version
|
||||
chmod a+x polkadot-parachain
|
||||
./polkadot-parachain --version
|
||||
|
||||
- name: Start local node
|
||||
run: |
|
||||
echo Running on $CHAIN
|
||||
./polkadot-collator --chain=$CHAIN -- --chain polkadot-local &
|
||||
./polkadot-parachain --chain=$CHAIN -- --chain polkadot-local &
|
||||
|
||||
- name: Prepare output
|
||||
run: |
|
||||
VERSION=$(./polkadot-collator --version)
|
||||
VERSION=$(./polkadot-parachain --version)
|
||||
echo "Metadata comparison:" >> output.txt
|
||||
echo "Date: $(date)" >> output.txt
|
||||
echo "Reference: $REF_URL" >> output.txt
|
||||
@@ -71,7 +71,7 @@ jobs:
|
||||
|
||||
- name: Stop our local node
|
||||
run: |
|
||||
pkill polkadot-collator
|
||||
pkill polkadot-parachain
|
||||
continue-on-error: true
|
||||
|
||||
- name: Save output as artifact
|
||||
|
||||
@@ -19,7 +19,7 @@ on:
|
||||
jobs:
|
||||
docker_build_publish:
|
||||
env:
|
||||
BINARY: polkadot-collator
|
||||
BINARY: polkadot-parachain
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
|
||||
@@ -14,7 +14,7 @@ on:
|
||||
jobs:
|
||||
docker_build_publish:
|
||||
env:
|
||||
BINARY: polkadot-collator
|
||||
BINARY: polkadot-parachain
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
|
||||
Reference in New Issue
Block a user