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

Applications #10

Merged
merged 11 commits into from
Nov 27, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Build the client worker
run: |
cd client-worker
nix develop '.?submodules=1' --override-input linera-protocol ../linera-protocol --command wasm-pack build --target web
nix develop '.?submodules=1' --override-input linera-protocol ../linera-protocol --command bash build.bash
- name: Build the extension
run: |
cd extension
Expand Down
6 changes: 6 additions & 0 deletions client-worker/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
[target.wasm32-unknown-unknown]
rustflags = ["-C", "target-feature=+atomics,+bulk-memory,+mutable-globals"]

[unstable]
build-std = ["panic_abort", "std"]

[build]
target = "wasm32-unknown-unknown"
1 change: 0 additions & 1 deletion client-worker/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
/target
/pkg
Cargo.lock
Loading