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

WASM32 support with regression fix #893

Merged
merged 5 commits into from
Mar 14, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
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
8 changes: 8 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ jobs:
uses: taiki-e/install-action@nextest
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Install wasm-bindgen-cli
uses: jetli/wasm-pack-action@v0.4.0
with:
version: "v0.10.3"

- name: Set up cargo cache
uses: Swatinem/rust-cache@v2
Expand Down Expand Up @@ -62,6 +66,10 @@ jobs:
run: pip install ecdsa fastecdsa sympy cairo-lang
- name: Run tests
run: make -j test
- name: Run tests no_std
run: make -j test-no_std
- name: Run wasm tests
run: make -j test-wasm
- name: Compare trace and memory
run: make -j compare_trace_memory
- name: Compare trace and memory with proof mode
Expand Down
Loading