chore(runtime): Update weights (#3243) #38
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: Release | |
on: | |
push: | |
tags: ["*"] | |
env: | |
CARGO_INCREMENTAL: 0 | |
CARGO_TERM_COLOR: always | |
TERM: xterm-256color | |
jobs: | |
generate-changelog: | |
name: Generate changelog | |
runs-on: ubuntu-latest | |
outputs: | |
release_body: ${{ steps.git-cliff.outputs.content }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Update config | |
shell: bash | |
run: sed -E -i "s/\s+\#\s(.*)\s\#\sreplace issue numbers/\\t\1/g" cliff.toml | |
- name: Generate a changelog | |
uses: orhun/git-cliff-action@v2 | |
id: git-cliff | |
with: | |
config: cliff.toml | |
args: -vv --latest --strip header | |
env: | |
OUTPUT: CHANGES.md | |
prepare: | |
needs: generate-changelog | |
runs-on: ubuntu-latest | |
steps: | |
- id: version | |
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT | |
- name: Show version | |
run: echo ${{ steps.version.outputs.VERSION }} | |
outputs: | |
version: ${{ steps.version.outputs.VERSION }} | |
build: | |
needs: prepare | |
runs-on: [kuberunner] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set cargo path | |
run: echo "/tmp/cargo/bin" >> $GITHUB_PATH | |
- name: "Install: Rust toolchain" | |
uses: dsherret/rust-toolchain-file@v1 | |
- name: Install build deps | |
run: | | |
sudo apt update -y | |
sudo apt install -y git clang curl libssl-dev llvm libudev-dev cmake protobuf-compiler wget bzip2 | |
- name: Build wasm-proc | |
run: | | |
cargo build -p wasm-proc --release | |
cp -vf target/release/wasm-proc ./ | |
- name: Build binaries | |
run: > | |
cargo build -p gear-cli --profile production | |
- name: Test runtimes | |
run: | | |
./wasm-proc --check-runtime-imports target/production/wbuild/gear-runtime/gear_runtime.wasm | |
./wasm-proc --check-runtime-imports target/production/wbuild/vara-runtime/vara_runtime.wasm | |
- name: Prepare artifacts | |
run: | | |
mkdir -p artifact | |
cp target/production/wbuild/gear-runtime/gear_runtime.compact.compressed.wasm artifact/ | |
cp target/production/wbuild/gear-runtime/gear_runtime.compact.wasm artifact/ | |
cp target/production/wbuild/gear-runtime/gear_runtime.wasm artifact/ | |
cp target/production/wbuild/vara-runtime/vara_runtime.compact.compressed.wasm artifact/ | |
cp target/production/wbuild/vara-runtime/vara_runtime.compact.wasm artifact/ | |
cp target/production/wbuild/vara-runtime/vara_runtime.wasm artifact/ | |
cp target/production/gear artifact/ | |
strip artifact/gear || true | |
- name: Publish | |
uses: softprops/action-gh-release@v1 | |
with: | |
body: "${{ needs.generate-changelog.outputs.release_body }}" | |
files: artifact/* | |
tag_name: ${{ steps.version.outputs.VERSION }} | |
draft: true |