Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
040bfe9
feat: use openvm intrinsics
luffykai Nov 21, 2024
24d7e5a
fix: ecrecover only needs openvm-k256 feature
jonathanpwang Dec 15, 2024
3d79821
chore: fix complex_init and tests (#10)
jonathanpwang Dec 15, 2024
ac52c4c
chore: fix tests for proving (#11)
jonathanpwang Dec 15, 2024
1e5e83f
chore: update to `openvm` v0.1.0-alpha (#12)
jonathanpwang Dec 16, 2024
57f2151
chore: bump openvm to v0.1.1-alpha (#13)
jonathanpwang Jan 3, 2025
0457ae5
[feat] openvm sha2 (#14)
luffykai Jan 8, 2025
f2af811
chore: bump openvm to pre v0.2 and update macros (#15)
jonathanpwang Jan 16, 2025
120795d
chore: bump openvm commit (#16)
jonathanpwang Jan 16, 2025
247ce0a
[chore] bump openvm version (#17)
luffykai Jan 17, 2025
b38157c
chore: bump openvm (#19)
jonathanpwang Jan 18, 2025
950d46e
chore: bump openvm commit (#20)
jonathanpwang Jan 20, 2025
3d10350
chore: bump openvm commit (#21)
jonathanpwang Jan 22, 2025
a84b6fc
bump openvm and fix (#23)
luffykai Jan 24, 2025
74fd736
bump lock (#24)
luffykai Jan 24, 2025
9b00abb
bump version (#25)
luffykai Jan 24, 2025
28403ca
chore: bump openvm (#26)
jonathanpwang Jan 26, 2025
efebde5
chore: openvm v1.0.0-rc.0 (#29)
jonathanpwang Jan 29, 2025
2f24aef
chore: tag stark-backend v1.0.0-rc.0 (#30)
jonathanpwang Jan 29, 2025
9140fb6
chore: update openvm version to v1.0.0-rc.1 (#36)
yi-sun Feb 12, 2025
a3d9cae
fix: use `catch_unwind` on functions with hints (#37)
jonathanpwang Feb 17, 2025
412fdf0
feat: KZG point evaluation precompile using pairing intrinsics (#43)
jonathanpwang Feb 18, 2025
698a1e8
chore: feature gate "openvm-kzg/use-intrinsics" (#44)
jonathanpwang Feb 21, 2025
5eb7907
chore: sync with openvm fixes (#47)
jonathanpwang Mar 10, 2025
6f5f7d5
chore: update openvm commit (#53)
jonathanpwang Mar 16, 2025
4a1b2ac
chore: update openvm-kzg (#57)
jonathanpwang Mar 19, 2025
237c50b
chore: update openvm (#58)
jonathanpwang Mar 20, 2025
1605ea2
chore: update openvm, openvm-kzg commit (#59)
shuklaayush Mar 21, 2025
5f3dee3
chore: update openvm & rust stable 1.85 (#63)
jonathanpwang Mar 27, 2025
1db8d32
fix: correct pairing edge cases (#64)
shuklaayush Mar 27, 2025
3e3a39e
chore: update openvm to f41640c (#65)
shuklaayush Mar 28, 2025
4e079ea
chore: update openvm (#68)
jonathanpwang Apr 4, 2025
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
Empty file added .cargo/config.toml
Empty file.
36 changes: 36 additions & 0 deletions .github/workflows/openvm-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: OpenVM Tests

on:
push:
branches: ["v43-openvm"]
pull_request:
branches: ["**"]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true

env:
OPENVM_FAST_TEST: 1

jobs:
tests:
name: OpenVM Tests
runs-on:
- runs-on=${{ github.run_id }}
- runner=64cpu-linux-x64
- extras=s3-cache
steps:
- uses: runs-on/action@v1
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- uses: taiki-e/install-action@nextest
- name: Rust toolchain
run: rustup component add rust-src --toolchain nightly-2025-02-14

- name: Run tests
working-directory: tests/openvm/tests
run: RUST_BACKTRACE=1 cargo nextest run --cargo-profile=fast
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ burntpix/svgs

# Rust bug report
rustc-ice-*

Cargo.lock
Loading