-
Notifications
You must be signed in to change notification settings - Fork 124
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
Wasm test #772
Wasm test #772
Conversation
8b4edc0
to
443acd4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Looks like a good first step. Only one minor comment on the yml.
@@ -235,6 +244,31 @@ jobs: | |||
nc -z -v 127.0.0.1 9944 | |||
chmod +x ${{ matrix.example }} | |||
./${{ matrix.example }} | |||
wasm_examples: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would add a newline before this, or even put this block below the next block "merge", as the merge is using only the examples. I'm almost wondering if we should put the wasm-stuff into its own yml-file (?). But I leave this up to you
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added the newline. The merge is actually also for the wasm-example as this can also be downloaded. I also updated the merge to reflect this.
443acd4
to
4d22b57
Compare
This reverts commit 6900574.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Mostly scaffolding to have a WebAssembly test in the build. The test itself is not yet super meaningful, but I think it is still a good first step to have something running and tested.
For a proper test with real use-cases we need to investigate how to create outside connections. See #769