only use nvm on mac

This commit is contained in:
eV 2019-08-16 20:04:09 +00:00
parent 93e4f29ee4
commit bd22644b05
2 changed files with 5 additions and 5 deletions

View File

@ -22,9 +22,9 @@ env:
- LD_LIBRARY_PATH: /usr/local/lib
- CLIPPY: n
install:
- source $HOME/.nvm/nvm.sh
- nvm install 10
- nvm use 10
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then source $HOME/.nvm/nvm.sh; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then nvm install 10; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then nvm use 10; fi
- curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
script: ./ci/travis.sh
notifications:

View File

@ -51,8 +51,8 @@ build_and_test() {
if [ -n "${TRAVIS}" ]; then
# wasm tests
touch tests/wasm.rs # ensure rebuild happens so TZ / NOW take effect
#TZ=ACST-9:30 NOW=$(date +%s) wasm-pack test --node
#touch tests/wasm.rs
TZ=ACST-9:30 NOW=$(date +%s) wasm-pack test --node
touch tests/wasm.rs
TZ=EST4 NOW=$(date +%s) wasm-pack test --node
touch tests/wasm.rs
TZ=UTC0 NOW=$(date +%s) wasm-pack test --node