Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release v1.0.2-testnet #760

Merged
merged 30 commits into from
May 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
baec5a6
add Runtime::dry_run
lispc Apr 30, 2024
e5413bd
Merge remote-tracking branch 'origin/main' into dev
lispc May 10, 2024
387ae09
merge with upstream
lispc May 10, 2024
2bf7fcd
chore(deps): bump dirs from 4.0.0 to 5.0.1
dependabot[bot] May 11, 2024
5952c23
chore(deps): bump axum from 0.7.4 to 0.7.5
dependabot[bot] May 11, 2024
7b71c39
chore(deps): bump axum from 0.7.4 to 0.7.5 (#718)
jtguibas May 11, 2024
a23ba99
chore(deps): bump dirs from 4.0.0 to 5.0.1 (#717)
jtguibas May 11, 2024
6815064
perf: get_cycles don't need emit events (#697)
jtguibas May 13, 2024
d6d69a1
fix: release flow doesn't run on main (#721)
jtguibas May 13, 2024
ccb7f2a
chore: update dev with latest main (#728)
jtguibas May 14, 2024
518bea3
feat: fix execution + proving errors (#715)
jtguibas May 14, 2024
933df11
feat: auto rebuild dev artifacts in sdk (#726)
jtguibas May 14, 2024
e2decbf
feat: reduce network prover (#687)
ctian1 May 14, 2024
a7d94c2
feat: add `hash_public_values` (#730)
ratankaliani May 14, 2024
dde0da1
feat: add proof verification (#729)
ratankaliani May 14, 2024
4f8f915
fix: groth16 install when in existing runtime (#735)
ctian1 May 14, 2024
00255c1
fix(recursion): poseidon2 external flag (#747)
kevjue May 15, 2024
734d821
fix: unnecessary pc constraint (#749)
ctian1 May 16, 2024
1349e56
fix(ci): downgrade `getrandom` (#751)
ratankaliani May 17, 2024
7c19f66
fix: assets branch (#752)
ratankaliani May 17, 2024
cfb648d
feat: Implement `verify_groth16` & `prove_groth16` on `MockProver` (#…
ratankaliani May 17, 2024
0bd407e
feat(recursion): public values constraints (#748)
kevjue May 18, 2024
f9c7801
refactor: use actual ffi for gnark (#738)
ctian1 May 18, 2024
7efc704
fix: SHA_COMPRESS syscall added to syscall map twice (#740)
Sofianel5 May 19, 2024
57f6cde
refactor(prover): expose functions for getting core/deferred inputs (…
ctian1 May 19, 2024
9f43e92
chore: merge main into dev (#757)
ctian1 May 19, 2024
04521dd
chore: update groth16 build (#758)
ctian1 May 19, 2024
00e6b50
chore: fix (#759)
ctian1 May 19, 2024
2df83d7
fix: solidity verifier
ctian1 May 19, 2024
77949c6
Merge remote-tracking branch 'origin/main' into chris/v1.0.2-testnet
ctian1 May 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: Main

on:
pull_request:
branches:
- main
paths:
- "cli/**"
- "core/**"
- "prover/**"
- "recursion/**"
- "derive/**"
- "sdk/**"
- ".github/workflows/**"
pull_request:
branches:
- main
paths:
- "cli/**"
- "core/**"
- "prover/**"
- "recursion/**"
- "derive/**"
- "sdk/**"
- ".github/workflows/**"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: PR

on:
push:
branches: [main]
branches: [main, dev]
pull_request:
branches:
- "**"
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
- name: Install SP1 CLI
run: |
cd cli
cargo install --locked --path .
cargo install --force --locked --path .
cd ~

- name: Run cargo check
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
- name: Install SP1 CLI
run: |
cd cli
cargo install --locked --path .
cargo install --force --locked --path .
cd ~

- name: Run cargo prove new
Expand Down
12 changes: 1 addition & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
jobs:
prepare:
name: Prepare release
runs-on: runner=64cpu-linux-arm64
runs-on: runs-on,runner=8cpu-linux-x64
timeout-minutes: 30
outputs:
tag_name: ${{ steps.release_info.outputs.tag_name }}
Expand All @@ -30,16 +30,6 @@ jobs:
with:
pull_token: ${{ secrets.PULL_TOKEN }}

- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
toolchain: nightly-2024-04-17
args: -p sp1-sdk --release -- --nocapture
env:
RUSTFLAGS: -Copt-level=3 -Cdebug-assertions -Coverflow-checks=y -Cdebuginfo=0 -C target-cpu=native
RUST_BACKTRACE: 1

- name: Compute release name and tag
id: release_info
run: |
Expand Down
Loading
Loading