Skip to content

Commit

Permalink
run on polkadot and asset hub rococo
Browse files Browse the repository at this point in the history
  • Loading branch information
liamaharon committed Mar 18, 2024
1 parent dcad084 commit 2b7a4c9
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/polkadot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:

jobs:
run-polkadot:
polkadot:
runs-on: ubuntu-latest
steps:
- name: Checkout Runtimes Repo
Expand All @@ -16,5 +16,25 @@ jobs:
uses: "paritytech/try-runtime-gha@main"
with:
runtime-package: "polkadot-runtime"
extra-args: "--disable-idempotency-check --no-weight-warnings"
# - Disable Weight Warnings because they do not apply to Relay Chains
# - Disable Spec Version Check because we are just running this against 'master' branch,
# not an actually ready to deploy runtime
extra-args: "--no-weight-warnings --disable-spec-version-check"
node-uri: "wss://polkadot-try-runtime-node.parity-chains.parity.io:443"

rococo-asset-hub:
runs-on: ubuntu-latest
steps:
- name: Checkout Runtimes Repo
uses: actions/checkout@v3
with:
repository: "paritytech/polkadot-sdk"

- name: Run Polkadot Try State Checks
uses: "paritytech/try-runtime-gha@main"
with:
runtime-package: "asset-hub-rococo-runtime"
node-uri: "wss://rococo-asset-hub-rpc.polkadot.io:443"
# - Disable Spec Version Check because we are just running this against 'master' branch,
# not an actually ready to deploy runtime
extra-args: "--disable-spec-version-check"

0 comments on commit 2b7a4c9

Please sign in to comment.