Files
wasmtime/.travis.yml
Dan Gohman 846a71d93b Fixes for mypy 0.600 (#324)
* Remove the mypy version constraint and set strict_optional to False.

* Add type annotations for `ISA` variables.

mypy 0.600 seems to require explicit annotations here.

* Annotate the ISA variables in the defs.py files too.
2018-05-03 12:12:19 -07:00

28 lines
608 B
YAML

language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: beta
- rust: nightly
dist: trusty
sudo: false
addons:
apt:
packages:
- python3-pip
before_install:
- wget https://storage.googleapis.com/wasm-llvm/builds/linux/26619/wasm-toolchain_0.1.26619_amd64.deb
- sudo dpkg -i wasm-toolchain_0.1.26619_amd64.deb
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