Build Deterministic Runtimes #54
Workflow file for this run
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
name: Build Deterministic Runtimes | |
env: | |
SUBWASM_VERSION: 0.18.0 | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
jobs: | |
srtool: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
strategy: | |
matrix: | |
runtime: ["testnet", "mainnet"] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Cache runtime target dir | |
uses: actions/cache@v3 | |
with: | |
path: "${{ github.workspace }}/runtime/${{ matrix.runtime }}/target" | |
key: srtool-target-${{ matrix.runtime }}-${{ github.sha }} | |
restore-keys: | | |
srtool-target-${{ matrix.runtime }}- | |
srtool-target- | |
- name: Build ${{ matrix.runtime }} runtime | |
id: srtool_build | |
uses: chevdor/[email protected] | |
with: | |
chain: ${{ matrix.runtime }} | |
- name: Store srtool digest to disk | |
run: | | |
echo '${{ steps.srtool_build.outputs.json }}' | jq . > ${{ matrix.runtime }}-srtool-digest.json | |
# Manual trigger: add artifacts to run | |
- name: Copy artifacts | |
if: github.event_name != 'release' | |
run: cp `dirname ${{ steps.srtool_build.outputs.wasm }}`/*.wasm ./ | |
- name: Archive Runtime | |
if: github.event_name != 'release' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.runtime }}-runtime-${{ github.sha }} | |
path: | | |
${{ matrix.chain }}*.wasm | |
${{ matrix.runtime }}-srtool-digest.json | |
# We now get extra information thanks to subwasm, | |
- name: Install subwasm ${{ env.SUBWASM_VERSION }} | |
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 | |
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 }}-info_compressed.json | |
- name: Extract the metadata | |
run: | | |
subwasm meta ${{ steps.srtool_build.outputs.wasm }} | |
subwasm --json meta ${{ steps.srtool_build.outputs.wasm }} > ${{ matrix.runtime }}-metadata.json | |
- name: Archive Subwasm results | |
if: github.event_name != 'release' | |
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 | |
with: | |
name: ${{ matrix.runtime }}-info | |
path: | | |
${{ matrix.runtime }}-info.json | |
${{ matrix.runtime }}-info_compressed.json | |
${{ matrix.runtime }}-metadata.json | |
${{ matrix.runtime }}-diff.txt | |
# Release published: add artifacts to release | |
- name: Add artifacts to release | |
if: github.event_name == 'release' | |
uses: softprops/action-gh-release@v1 | |
with: | |
append_body: true | |
body: | | |
## Runtime: `${{ matrix.runtime }}` | |
``` | |
ποΈ Runtime Size: ${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.size }} bytes | |
π₯ Core Version: ${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.core_version.specName }}-${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.core_version.specVersion }} | |
π Metadata version: V${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.metadata_version }} | |
π³οΈ system.setCode hash: ${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.proposal_hash }} | |
π³οΈ authorizeUpgrade hash: ${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.parachain_authorize_upgrade_hash }} | |
π³οΈ Blake2-256 hash: ${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.blake2_256 }} | |
π¦ IPFS: ${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.ipfs_hash }} | |
``` | |
files: | | |
${{ steps.srtool_build.outputs.wasm_compressed }} | |
${{ matrix.runtime }}-srtool-digest.json | |
${{ matrix.runtime }}-info_compressed.json | |
${{ matrix.runtime }}-metadata.json | |
build-tesnet-paseo: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
strategy: | |
matrix: | |
runtime: ["testnet"] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Cache runtime target dir | |
uses: actions/cache@v3 | |
with: | |
path: "${{ github.workspace }}/runtime/${{ matrix.runtime }}/target" | |
key: srtool-target-${{ matrix.runtime }}-paseo-${{ github.sha }} | |
restore-keys: | | |
srtool-target-${{ matrix.runtime }}- | |
srtool-target- | |
- name: Build ${{ matrix.runtime }} runtime | |
id: srtool_build | |
uses: chevdor/[email protected] | |
env: | |
BUILD_OPTS: "--features paseo" | |
with: | |
chain: ${{ matrix.runtime }} | |
- name: Store srtool digest to disk | |
run: | | |
echo '${{ steps.srtool_build.outputs.json }}' | jq . > ${{ matrix.runtime }}-paseo-srtool-digest.json | |
# Manual trigger: add artifacts to run | |
- name: Copy artifacts | |
if: github.event_name != 'release' | |
run: | | |
cp `dirname ${{ steps.srtool_build.outputs.wasm }}`/*.wasm ./ | |
mv ${{ matrix.runtime }}_runtime.compact.compressed.wasm ${{ matrix.runtime }}-paseo_runtime.compact.compressed.wasm | |
- name: Rename paseo wasm | |
if: github.event_name == 'release' | |
run: | | |
cp `dirname ${{ steps.srtool_build.outputs.wasm }}`/${{ matrix.runtime }}_runtime.compact.compressed.wasm ${{ matrix.runtime }}-paseo_runtime.compact.compressed.wasm | |
- name: Archive Runtime | |
if: github.event_name != 'release' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.runtime }}-paseo-runtime-${{ github.sha }} | |
path: | | |
${{ matrix.chain }}*.wasm | |
${{ matrix.runtime }}-paseo-srtool-digest.json | |
# We now get extra information thanks to subwasm, | |
- name: Install subwasm ${{ env.SUBWASM_VERSION }} | |
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 | |
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 }}-paseo-info.json | |
subwasm --json info ${{ steps.srtool_build.outputs.wasm_compressed }} > ${{ matrix.runtime }}-paseo-info_compressed.json | |
- name: Extract the metadata | |
run: | | |
subwasm meta ${{ steps.srtool_build.outputs.wasm }} | |
subwasm --json meta ${{ steps.srtool_build.outputs.wasm }} > ${{ matrix.runtime }}-paseo-metadata.json | |
- name: Archive Subwasm results | |
if: github.event_name != 'release' | |
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 | |
with: | |
name: ${{ matrix.runtime }}-paseo-info | |
path: | | |
${{ matrix.runtime }}-paseo-info.json | |
${{ matrix.runtime }}-paseo-info_compressed.json | |
${{ matrix.runtime }}-paseo-metadata.json | |
${{ matrix.runtime }}-paseo-diff.txt | |
# Release published: add artifacts to release | |
- name: Add artifacts to release | |
if: github.event_name == 'release' | |
uses: softprops/action-gh-release@v1 | |
with: | |
append_body: true | |
body: | | |
## Runtime: `${{ matrix.runtime }}-paseo` | |
``` | |
ποΈ Runtime Size: ${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.size }} bytes | |
π₯ Core Version: ${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.core_version.specName }}-${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.core_version.specVersion }} | |
π Metadata version: V${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.metadata_version }} | |
π³οΈ system.setCode hash: ${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.proposal_hash }} | |
π³οΈ authorizeUpgrade hash: ${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.parachain_authorize_upgrade_hash }} | |
π³οΈ Blake2-256 hash: ${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.blake2_256 }} | |
π¦ IPFS: ${{ fromJSON(steps.srtool_build.outputs.json).runtimes.compressed.subwasm.ipfs_hash }} | |
``` | |
files: | | |
${{ matrix.runtime }}-paseo_runtime.compact.compressed.wasm | |
${{ matrix.runtime }}-paseo-srtool-digest.json | |
${{ matrix.runtime }}-paseo-info_compressed.json | |
${{ matrix.runtime }}-paseo-metadata.json |