mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-05-30 11:11:08 +00:00
Remove JS backend (#219)
* chore: Remove JS backend * chore: Update travis to run Rust backend tests * chore(travis): Install dependencies before building
This commit is contained in:
+30
-4
@@ -1,11 +1,37 @@
|
||||
sudo: false
|
||||
language: rust
|
||||
|
||||
language: node_js
|
||||
cache:
|
||||
cargo: true
|
||||
|
||||
rust:
|
||||
- stable
|
||||
- beta
|
||||
- nightly
|
||||
|
||||
env:
|
||||
global:
|
||||
- CLIPPY_TOOLCHAIN=nightly
|
||||
|
||||
matrix:
|
||||
include:
|
||||
- node_js: "10"
|
||||
allow_failures:
|
||||
- rust: nightly
|
||||
|
||||
os:
|
||||
- linux
|
||||
|
||||
before_install:
|
||||
- source $HOME/.nvm/nvm.sh
|
||||
- nvm install --lts
|
||||
- nvm use --lts
|
||||
|
||||
before_script:
|
||||
- if [ $TRAVIS_RUST_VERSION = $CLIPPY_TOOLCHAIN ]; then rustup component add clippy-preview --toolchain=$CLIPPY_TOOLCHAIN; fi
|
||||
- curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh -s -- -f
|
||||
|
||||
script: ./test.sh
|
||||
|
||||
script:
|
||||
- yarn
|
||||
- yarn build:all
|
||||
- yarn test
|
||||
- cd backend && cargo test
|
||||
|
||||
Reference in New Issue
Block a user