Skip to content

chore: bump kona to 1.5.2 (#325) #420

chore: bump kona to 1.5.2 (#325)

chore: bump kona to 1.5.2 (#325) #420

Workflow file for this run

# This workflow runs on all PRs, and ensures that the ELF files are built correctly.

Check failure on line 1 in .github/workflows/elf.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/elf.yml

Invalid workflow file

(Line: 32, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'docker/setup-buildx-action/4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd'
name: ELF
on:
pull_request:
branches:
- master
push:
branches:
- master
workflow_dispatch:
jobs:
elf:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install SP1 toolchain
run: |
curl -L https://sp1.succinct.xyz | bash
~/.sp1/bin/sp1up -v v6.1.0
~/.sp1/bin/cargo-prove prove --version
source ~/.bashrc
- name: Install protoc
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler
- name: Setup Docker Buildx
uses: docker/setup-buildx-action/4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd
- name: Verify the OP Succinct binaries
run: |
# Build the binaries
cd canoe/sp1-cc/client
~/.sp1/bin/cargo-prove prove build --elf-name canoe-sp1-cc-client --docker --tag v6.1.0 --output-directory ../elf
cd ../
# Check for any changes in the elf directory
if [ -n "$(git status --porcelain elf/)" ]; then
echo "❌ ELF files changed during build!"
git diff
exit 1
else
echo "✅ ELF files remained unchanged"
fi