mirror of
https://github.com/wez/wezterm.git
synced 2024-11-24 07:46:59 +03:00
c880894055
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.
49 lines
843 B
YAML
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
|