mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-16 10:10:52 +00:00
25 lines
480 B
YAML
25 lines
480 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)
|
|
- (cd examples/smorgasboard && ./build.sh)
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
|