With 8f4a3586e5a787fd32a9afe35df4a9811d92c66b, we now have proper wabt integration, so we no longer need to download and install a separate binary package.
25 lines
432 B
YAML
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
|