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

Use serialize_to_file/deserialize_from_file from Wasmer #660

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all 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
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ workflows:
- master
# 👇 Add your branch here if benchmarking matters to your work
- benchmarking
- upgrade-to-wasmer-reborn
- update-wasmer
- module-helpers
deploy:
jobs:
- build_and_upload_devcontracts:
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -319,13 +319,19 @@ cargo fmt \

**Contracts**

Step 1 (fast checks)
Step 1 (fast checks, rebuilds lock files)

```sh
for contract_dir in contracts/*/; do (cd "$contract_dir" && cargo check --tests) || break; done
```

Step 2 (medium fast checks)

```sh
for contract_dir in contracts/*/; do (cd "$contract_dir" && cargo fmt && cargo check --tests && cargo wasm-debug && cargo unit-test && cargo clippy -- -D warnings && cargo schema) || break; done
```

Step 2 (slower checks)
Step 3 (slower checks)

```sh
for contract_dir in contracts/*/; do (cd "$contract_dir" && cargo wasm && cargo integration-test) || break; done
Expand Down
24 changes: 12 additions & 12 deletions contracts/burner/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions contracts/hackatom/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading