mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
42 lines
827 B
YAML
42 lines
827 B
YAML
language: rust
|
|
sudo: false
|
|
|
|
git:
|
|
depth: 1
|
|
|
|
cache: cargo
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
|
|
rust:
|
|
- stable
|
|
- nightly
|
|
|
|
env:
|
|
- CLIPPY="true"
|
|
- CLIPPY=""
|
|
|
|
install:
|
|
- if [ -n "$CLIPPY" ]; then rustup component add clippy-preview; fi
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
exclude:
|
|
- rust: stable
|
|
env: CLIPPY="true"
|
|
- rust: nightly
|
|
env: CLIPPY=""
|
|
allow_failures:
|
|
- rust: nightly
|
|
- os: windows
|
|
|
|
script:
|
|
- if [ "$TRAVIS_OS_NAME" == "windows" ]; then choco install llvm --norestart --nosilent; fi
|
|
|
|
- if [ -n "$CLIPPY" ]; then cargo clippy --all-features --all-targets; fi
|
|
- if [ -z "$CLIPPY" ]; then cargo test; fi
|
|
- if [ -z "$CLIPPY" ]; then cargo test -p font; fi
|
|
- if [ "$TRAVIS_OS_NAME" == "windows" ]; then cp target/debug/winpty-agent.exe target/debug/deps && cargo test -p winpty; fi
|