Skip to content

Commit

Permalink
Merge pull request #24 from succinctlabs/chris/refactor
Browse files Browse the repository at this point in the history
feat: refactor
  • Loading branch information
puma314 authored Aug 6, 2024
2 parents ae8d28d + de4ec8e commit 9c37771
Show file tree
Hide file tree
Showing 15 changed files with 6,152 additions and 44 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/prove.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build Program

on:
workflow_dispatch:
push:
branches: [main]
pull_request:

env:
FOUNDRY_PROFILE: ci

jobs:
check:
strategy:
fail-fast: true

name: Build
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Install rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.79.0

- name: Install SP1 toolchain
run: |
curl -L https://sp1.succinct.xyz | bash
~/.sp1/bin/sp1up
~/.sp1/bin/cargo-prove prove --version
- name: Build SP1 program
run: |
cd program
~/.sp1/bin/cargo-prove prove build
Loading

0 comments on commit 9c37771

Please sign in to comment.