Skip to content

Commit

Permalink
add ensure-no-std crate to workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
tdelabro committed Jun 12, 2023
1 parent 2b7de08 commit 5f0fb4d
Show file tree
Hide file tree
Showing 136 changed files with 804 additions and 438 deletions.
6 changes: 3 additions & 3 deletions .github/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ coverage:
threshold: 5%

ignore:
- src/vm/errors
- src/types/errors
- vm/src/vm/errors
- vm/src/types/errors
- hint_accountant
- src/hint_processor/cairo-1-hint-processor # TODO: Remove this line
- vm/src/hint_processor/cairo-1-hint-processor # TODO: Remove this line
- ./deps
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,11 +217,11 @@ jobs:
cargo llvm-cov nextest --lcov --output-path lcov-${{ matrix.target }}.info --workspace --features "cairo-1-hints, test_utils"
;;
'test-no_std')
cargo llvm-cov nextest --lcov --output-path lcov-${{ matrix.target }}.info --workspace --features test_utils --no-default-features
cargo llvm-cov nextest --lcov --output-path lcov-${{ matrix.target }}.info --workspace --no-default-features
;;
'test-wasm')
# NOTE: release mode is needed to avoid "too many locals" error
wasm-pack test --release --node --no-default-features
wasm-pack test --release --node vm --no-default-features
;;
esac
Expand Down Expand Up @@ -423,4 +423,4 @@ jobs:
if [ ${{ matrix.program-target }} = cairo_proof_programs ]; then
PROOF=proof
fi
./src/tests/compare_vm_state.sh trace memory $PROOF
./vm/src/tests/compare_vm_state.sh trace memory $PROOF
Loading

0 comments on commit 5f0fb4d

Please sign in to comment.