feat: check $CARGO_TARGET_DIR
in run-standalone-local.sh
(#805)
#120
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: Srtool build Wasm | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
jobs: | |
srtool: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
chain: ["testnet", "mainnet"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/free-disk-space | |
- name: Srtool build | |
if: matrix.chain == 'mainnet' | |
id: srtool_build | |
uses: chevdor/[email protected] | |
with: | |
chain: ${{ matrix.chain }} | |
runtime_dir: runtime/${{ matrix.chain }} | |
package: tangle-runtime | |
- name: Srtool build testnet | |
if: matrix.chain == 'testnet' | |
uses: chevdor/[email protected] | |
with: | |
chain: ${{ matrix.chain }} | |
runtime_dir: runtime/${{ matrix.chain }} | |
package: tangle-testnet-runtime | |
- name: Summary | |
run: | | |
echo '${{ steps.srtool_build.outputs.json }}' | jq . > ${{ matrix.chain }}-srtool-digest.json | |
cat ${{ matrix.chain }}-srtool-digest.json | |
echo "Runtime location: ${{ steps.srtool_build.outputs.wasm }}" | |
- name: Archive Runtime | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.chain }}-runtime-${{ github.sha }} | |
path: | | |
${{ steps.srtool_build.outputs.wasm }} | |
${{ matrix.chain }}-srtool-digest.json |