mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-16 10:10:52 +00:00
Right now Webpack probably has the most mature support for loading wasm modules, so let's show off how to do that! Additionally this commits hello world as an example to the repository.
24 lines
435 B
YAML
24 lines
435 B
YAML
language: rust
|
|
sudo: false
|
|
|
|
matrix:
|
|
include:
|
|
- rust: nightly
|
|
|
|
install:
|
|
- curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
|
|
- source ~/.nvm/nvm.sh
|
|
- nvm install 9
|
|
- yarn
|
|
|
|
script:
|
|
- rustup target add wasm32-unknown-unknown
|
|
- cargo test
|
|
- cargo install --debug --path crates/wasm-bindgen-cli
|
|
- (cd examples/hello_world && ./build.sh)
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
|