wasm-bindgen/.travis.yml
Alex Crichton 4aa6793b9e Rewrite the README using Webpack
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.
2018-03-02 20:12:00 -08:00

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