-
Notifications
You must be signed in to change notification settings - Fork 1.1k
"Just works" WASM (browser) experience #2245
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
Changes from 13 commits
0fdb20e
92b6bfc
85970e7
a3b5497
e57de9b
c3abeb3
c8e2b0e
c82735f
9a3494e
0aab228
2abcebd
eeb366a
4e87d01
a25a080
bbd2329
76bdd42
bfc7d7f
4ebe26e
d792ce2
cc4321d
075f4fc
19e4755
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ jobs: | |
matrix: | ||
toolchain: [ | ||
wasm32-unknown-emscripten, | ||
wasm32-unknown-unknown, | ||
wasm32-wasi | ||
] | ||
container: | ||
|
@@ -74,10 +75,17 @@ jobs: | |
key: ${{ matrix.toolchain }} | ||
|
||
- name: Build on ${{ matrix.toolchain }} | ||
if: matrix.toolchain != 'wasm32-unknown-unknown' | ||
# TODO: also run `cargo test` | ||
# TODO: ideally we would build `--workspace`, but not all crates compile for WASM | ||
run: cargo build --target=${{ matrix.toolchain }} | ||
|
||
- name: Build on ${{ matrix.toolchain }} | ||
if: matrix.toolchain == 'wasm32-unknown-unknown' | ||
# TODO: also run `cargo test` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes please, that would be great! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's a bigger undertaking, which might be more geared towards |
||
# TODO: ideally we would build `--workspace`, but not all crates compile for WASM | ||
run: cargo build --target=${{ matrix.toolchain }} --features wasm-bindgen | ||
|
||
check-rustdoc-links: | ||
name: Check rustdoc intra-doc links | ||
runs-on: ubuntu-latest | ||
|
Uh oh!
There was an error while loading. Please reload this page.