Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/wrpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ jobs:
- target: x86_64-pc-windows-gnu
test-bin: |
nix profile install --inputs-from . 'nixpkgs-unstable#wine64'
wine64 ./result/bin/wit-bindgen-wrpc.exe --version
wine64 ./result/bin/wrpc-wasmtime.exe --version
wine ./result/bin/wit-bindgen-wrpc.exe --version
wine ./result/bin/wrpc-wasmtime.exe --version
test-oci: docker load < ./result
# TODO: Run win64 binary within OCI

Expand Down
72 changes: 36 additions & 36 deletions flake.lock

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

2 changes: 2 additions & 0 deletions src/bin/wrpc-wasmtime.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![recursion_limit = "256"]

#[tokio::main]
async fn main() -> anyhow::Result<()> {
wrpc_wasmtime_cli::run().await
Expand Down
Loading