1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-24 07:46:59 +03:00
wezterm/.travis.yml
Wez Furlong c880894055 make windows first-class in CI
Now that we have it running build and test, let's keep it green.
Let's take the nightly channel off; it does tend to fail and I
don't care particularly about it, and there's no need to take
up CI resources for it.
2019-03-23 18:47:15 -07:00

49 lines
843 B
YAML

language: rust
sudo: required
cache: cargo
rust:
- stable
- beta
os:
- osx
- linux
- windows
dist: xenial
matrix:
allow_failures:
- rust: beta
before_script:
- rustup component add rustfmt-preview
script:
- "if [[ \"$TRAVIS_RUST_VERSION\" == \"stable\" ]] ; then cargo fmt --all -- --check ; else true ; fi"
- cargo build --verbose
- cargo test --verbose -p term -p termwiz -p wezterm -p base91 -p varbincode
addons:
apt:
packages:
- binutils-dev
- cmake
- gcc
- xorg-dev
- libcurl4-openssl-dev
- libdw-dev
- libegl1-mesa-dev
- libelf-dev
- libfontconfig1-dev
- libiberty-dev
- libxcb-ewmh-dev
- libxcb-icccm4-dev
- libxcb-keysyms1-dev
- libxcb-xkb-dev
- libxkbcommon-dev
- libxkbcommon-x11-dev
- ragel