add payout script / example (#604) #16
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: Releaser Binaries and WASM | |
on: | |
push: | |
branches-ignore: | |
- '**' | |
tags: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
build_binaries: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- command: ENGINE=podman SCRIPT_LOC=./scripts/workflows/releaser_wasm.sh ./scripts/workflows/run.sh | |
output_file: output/da_runtime.compact.compressed.wasm | |
- command: ENGINE=podman DISTRO=ubuntu-2004 ZIP=1 ./scripts/binaries/build.sh | |
output_file: output/zips/x86_64-ubuntu-2004-avail-node.tar.gz | |
- command: ENGINE=podman DISTRO=ubuntu-2204 ZIP=1 ./scripts/binaries/build.sh | |
output_file: output/zips/x86_64-ubuntu-2204-avail-node.tar.gz | |
- command: ENGINE=podman DISTRO=ubuntu-2404 ZIP=1 ./scripts/binaries/build.sh | |
output_file: output/zips/x86_64-ubuntu-2404-avail-node.tar.gz | |
- command: ENGINE=podman DISTRO=fedora-39 ZIP=1 ./scripts/binaries/build.sh | |
output_file: output/zips/x86_64-fedora-39-avail-node.tar.gz | |
- command: ENGINE=podman DISTRO=fedora-40 ZIP=1 ./scripts/binaries/build.sh | |
output_file: output/zips/x86_64-fedora-40-avail-node.tar.gz | |
- command: ENGINE=podman DISTRO=debian-11 ZIP=1 ./scripts/binaries/build.sh | |
output_file: output/zips/x86_64-debian-11-avail-node.tar.gz | |
- command: ENGINE=podman DISTRO=debian-12 ZIP=1 ./scripts/binaries/build.sh | |
output_file: output/zips/x86_64-debian-12-avail-node.tar.gz | |
- command: ENGINE=podman DISTRO=arch ZIP=1 ./scripts/binaries/build.sh | |
output_file: output/zips/x86_64-arch-avail-node.tar.gz | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Free Disk Space (Ubuntu) | |
uses: jlumbroso/free-disk-space@main | |
with: | |
tool-cache: true | |
- name: install podman | |
run: sudo apt-get update && sudo apt install podman -y | |
- uses: nick-fields/retry@v3 | |
with: | |
timeout_minutes: 60 | |
max_attempts: 3 | |
command: ${{ matrix.command }} | |
- name: Prepare | |
id: prepare | |
run: | | |
TAG=${GITHUB_REF#refs/tags/} | |
echo "tag_name=${TAG}" >> $GITHUB_OUTPUT | |
- name: publish binary | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ matrix.output_file }} | |
release_name: ${{ steps.prepare.outputs.tag_name }} | |
tag: ${{ steps.prepare.outputs.tag_name }} | |
overwrite: true | |
arm64_ubuntu_2004: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Free Disk Space (Ubuntu) | |
uses: jlumbroso/free-disk-space@main | |
with: | |
tool-cache: true | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
version: '3.x' | |
- name: install cargo deps and build avail | |
shell: bash | |
run: | | |
curl https://sh.rustup.rs -sSf | sh -s -- -y | |
source "$HOME/.cargo/env" && rustup show | |
rustup target add aarch64-unknown-linux-gnu | |
sudo apt-get update && sudo apt-get install -y musl-tools clang gcc-aarch64-linux-gnu g++-aarch64-linux-gnu libc6-dev libc6-dev-arm64-cross | |
env BINDGEN_EXTRA_CLANG_ARGS='--sysroot /usr/aarch64-linux-gnu' CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=/usr/bin/aarch64-linux-gnu-gcc cargo build --release --target=aarch64-unknown-linux-gnu -p avail-node | |
pushd target/aarch64-unknown-linux-gnu/release/ | |
tar -czf arm64-ubuntu-2004-avail-node.tar.gz avail-node | |
popd | |
- name: Prepare | |
id: prepare | |
run: | | |
TAG=${GITHUB_REF#refs/tags/} | |
echo "tag_name=${TAG}" >> $GITHUB_OUTPUT | |
- name: publish binaries | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: target/aarch64-unknown-linux-gnu/release/arm64-ubuntu-2004-avail-node.tar.gz | |
release_name: ${{ steps.prepare.outputs.tag_name }} | |
tag: ${{ steps.prepare.outputs.tag_name }} | |
overwrite: true | |
arm64_ubuntu_2204: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Free Disk Space (Ubuntu) | |
uses: jlumbroso/free-disk-space@main | |
with: | |
tool-cache: true | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
version: '3.x' | |
- name: install cargo deps and build avail | |
shell: bash | |
run: | | |
curl https://sh.rustup.rs -sSf | sh -s -- -y | |
source "$HOME/.cargo/env" && rustup show | |
rustup target add aarch64-unknown-linux-gnu | |
sudo apt-get update && sudo apt-get install -y musl-tools clang gcc-aarch64-linux-gnu g++-aarch64-linux-gnu libc6-dev libc6-dev-arm64-cross | |
env BINDGEN_EXTRA_CLANG_ARGS='--sysroot /usr/aarch64-linux-gnu' CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=/usr/bin/aarch64-linux-gnu-gcc cargo build --release --target=aarch64-unknown-linux-gnu -p avail-node | |
pushd target/aarch64-unknown-linux-gnu/release/ | |
tar -czf arm64-ubuntu-2204-avail-node.tar.gz avail-node | |
popd | |
- name: Prepare | |
id: prepare | |
run: | | |
TAG=${GITHUB_REF#refs/tags/} | |
echo "tag_name=${TAG}" >> $GITHUB_OUTPUT | |
- name: publish binaries | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: target/aarch64-unknown-linux-gnu/release/arm64-ubuntu-2204-avail-node.tar.gz | |
release_name: ${{ steps.prepare.outputs.tag_name }} | |
tag: ${{ steps.prepare.outputs.tag_name }} | |
overwrite: true |