mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 03:18:01 +00:00
6007549589
* change dir names * cargo toml updates * fix crate imports for build * change chain spec names and PR review rule * update cli to accept asset-hub * find/replace benchmark commands * integration tests * bridges docs * more integration tests * AuraId * other statemint tidying * rename statemint mod * chain spec mod * rename e2e test dirs * one more Runtime::Statemine * benchmark westmint * rename chain spec name and id * rename chain spec files * more tidying in scripts/docs/tests * rename old dir if exists * Force people to manually do the move. (Safer as there could be additional considerations with their setup) * review touchups * more renaming * Update polkadot-parachain/src/command.rs Co-authored-by: Bastian Köcher <git@kchr.de> * better error message * do not break on-chain spec_name * log info message that path has been renamed * better penpal docs --------- Co-authored-by: gilescope <gilescope@gmail.com> Co-authored-by: Bastian Köcher <git@kchr.de> Co-authored-by: parity-processbot <>
123 lines
4.2 KiB
YAML
123 lines
4.2 KiB
YAML
name: Srtool build
|
|
|
|
env:
|
|
SUBWASM_VERSION: 0.17.0
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
# paths-ignore:
|
|
# - "docker"
|
|
# - "docs"
|
|
# - "scripts"
|
|
# - "test"
|
|
# - "client"
|
|
paths:
|
|
- parachains/runtimes/**/*
|
|
|
|
branches:
|
|
- "release*"
|
|
|
|
schedule:
|
|
- cron: "00 02 * * 1" # 2AM weekly on monday
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
srtool:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- category: assets
|
|
runtime: asset-hub-kusama
|
|
- category: assets
|
|
runtime: asset-hub-polkadot
|
|
- category: assets
|
|
runtime: asset-hub-westend
|
|
- category: bridge-hubs
|
|
runtime: bridge-hub-polkadot
|
|
- category: bridge-hubs
|
|
runtime: bridge-hub-kusama
|
|
- category: bridge-hubs
|
|
runtime: bridge-hub-rococo
|
|
- category: collectives
|
|
runtime: collectives-polkadot
|
|
- category: contracts
|
|
runtime: contracts-rococo
|
|
- category: starters
|
|
runtime: seedling
|
|
- category: starters
|
|
runtime: shell
|
|
- category: testing
|
|
runtime: rococo-parachain
|
|
steps:
|
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Srtool build
|
|
id: srtool_build
|
|
uses: chevdor/srtool-actions@v0.7.0
|
|
with:
|
|
chain: ${{ matrix.runtime }}
|
|
runtime_dir: parachains/runtimes/${{ matrix.category }}/${{ matrix.runtime }}
|
|
|
|
- name: Summary
|
|
run: |
|
|
echo '${{ steps.srtool_build.outputs.json }}' | jq > ${{ matrix.runtime }}-srtool-digest.json
|
|
cat ${{ matrix.runtime }}-srtool-digest.json
|
|
echo "Compact Runtime: ${{ steps.srtool_build.outputs.wasm }}"
|
|
echo "Compressed Runtime: ${{ steps.srtool_build.outputs.wasm_compressed }}"
|
|
|
|
# it takes a while to build the runtime, so let's save the artifact as soon as we have it
|
|
- name: Archive Artifacts for ${{ matrix.runtime }}
|
|
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
|
with:
|
|
name: ${{ matrix.runtime }}-runtime
|
|
path: |
|
|
${{ steps.srtool_build.outputs.wasm }}
|
|
${{ steps.srtool_build.outputs.wasm_compressed }}
|
|
${{ matrix.runtime }}-srtool-digest.json
|
|
|
|
# We now get extra information thanks to subwasm
|
|
- name: Install subwasm
|
|
run: |
|
|
wget https://github.com/chevdor/subwasm/releases/download/v${{ env.SUBWASM_VERSION }}/subwasm_linux_amd64_v${{ env.SUBWASM_VERSION }}.deb
|
|
sudo dpkg -i subwasm_linux_amd64_v${{ env.SUBWASM_VERSION }}.deb
|
|
subwasm --version
|
|
|
|
- name: Show Runtime information
|
|
shell: bash
|
|
run: |
|
|
subwasm info ${{ steps.srtool_build.outputs.wasm }}
|
|
subwasm info ${{ steps.srtool_build.outputs.wasm_compressed }}
|
|
subwasm --json info ${{ steps.srtool_build.outputs.wasm }} > ${{ matrix.runtime }}-info.json
|
|
subwasm --json info ${{ steps.srtool_build.outputs.wasm_compressed }} > ${{ matrix.runtime }}-compressed-info.json
|
|
|
|
- name: Extract the metadata
|
|
shell: bash
|
|
run: |
|
|
subwasm meta ${{ steps.srtool_build.outputs.wasm }}
|
|
subwasm --json meta ${{ steps.srtool_build.outputs.wasm }} > ${{ matrix.runtime }}-metadata.json
|
|
|
|
- name: Check the metadata diff
|
|
shell: bash
|
|
# the following subwasm call will error for chains that are not known and/or live, that includes shell for instance
|
|
run: |
|
|
subwasm diff ${{ steps.srtool_build.outputs.wasm }} --chain-b ${{ matrix.runtime }} || \
|
|
echo "Subwasm call failed, check the logs. This is likely because ${{ matrix.runtime }} is not known by subwasm" | \
|
|
tee ${{ matrix.runtime }}-diff.txt
|
|
|
|
- name: Archive Subwasm results
|
|
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
|
with:
|
|
name: ${{ matrix.runtime }}-runtime
|
|
path: |
|
|
${{ matrix.runtime }}-info.json
|
|
${{ matrix.runtime }}-compressed-info.json
|
|
${{ matrix.runtime }}-metadata.json
|
|
${{ matrix.runtime }}-diff.txt
|