mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-07-21 07:09:26 +00:00
19 lines
614 B
YAML
19 lines
614 B
YAML
name: Restore RISC Zero runtime
|
|
description: Restores the producer's pinned r0vm binary
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Download RISC Zero runtime
|
|
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
|
|
with:
|
|
name: risc0-runtime-3.0.5
|
|
path: ${{ runner.temp }}/risc0-runtime
|
|
|
|
- name: Install RISC Zero runtime
|
|
run: |
|
|
mkdir -p "$HOME/.cargo/bin"
|
|
mv "$RUNNER_TEMP/risc0-runtime/r0vm" "$HOME/.cargo/bin/r0vm"
|
|
chmod 0755 "$HOME/.cargo/bin/r0vm"
|
|
test "$(r0vm --version)" = "risc0-r0vm 3.0.5"
|
|
shell: bash
|