2244b92eb0
The one in travis.sh was failing: ./travis.sh: line 56: nvm: command not found The command "./travis.sh" exited with 127.
26 lines
362 B
YAML
26 lines
362 B
YAML
sudo: false
|
|
language: rust
|
|
cache: cargo
|
|
|
|
# run builds for all the trains (and more)
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
- 1.13.0
|
|
- 1.15.0
|
|
- 1.20.0
|
|
- 1.21.0
|
|
- 1.25.0
|
|
- 1.26.0
|
|
|
|
matrix:
|
|
include:
|
|
- rust: nightly
|
|
env: CLIPPY=true
|
|
- rust: nightly
|
|
env: EMSCRIPTEN=true
|
|
script: nvm install 9 && ./travis.sh
|
|
|
|
script: ./travis.sh
|