Files
wasmtime/.travis.yml
Dan Gohman 25d2ab4c00 Change the Travis config to allow failures in rust beta.
Rustc beta and nightly crash when compiling Cretonne. I've filed
https://github.com/rust-lang/rust/issues/49528 to track this upstream.
For now, add Beta to the allow-failures list to temporarily work
around this.
2018-04-13 09:58:36 -07:00

28 lines
599 B
YAML

language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust:
- beta
- 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
- travis_wait ./check-rustfmt.sh --install
script: ./test-all.sh
cache:
cargo: true
directories:
- $HOME/.cache/pip