Files
wasmtime/.travis.yml
Dan Gohman a6e6b79a2e Remove the install of the wasm-toolchain binary package.
With 8f4a3586e5a787fd32a9afe35df4a9811d92c66b, we now have proper wabt
integration, so we no longer need to download and install a separate
binary package.
2018-05-24 14:52:51 -07:00

25 lines
432 B
YAML

language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: beta
- rust: nightly
dist: trusty
sudo: false
addons:
apt:
packages:
- python3-pip
install:
- pip3 install --user --upgrade mypy flake8
- mypy --version
- travis_wait ./check-rustfmt.sh --install
script: ./test-all.sh
cache:
cargo: true
directories:
- $HOME/.cache/pip