48 lines
1.0 KiB
YAML
48 lines
1.0 KiB
YAML
language: rust
|
|
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
|
|
os:
|
|
- linux
|
|
|
|
dist: trusty
|
|
|
|
before_install:
|
|
- sudo apt-get install -y libwayland-dev
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
before_script:
|
|
- |
|
|
pip install 'travis-cargo<0.2' --user &&
|
|
export PATH=$HOME/.local/bin:$PATH
|
|
|
|
script:
|
|
- |
|
|
travis-cargo build &&
|
|
travis-cargo test &&
|
|
travis-cargo --only stable doc
|
|
|
|
after_success:
|
|
- travis-cargo --only stable doc-upload
|
|
|
|
env:
|
|
global:
|
|
# override the default `--features unstable` used for the nightly branch (optional)
|
|
- TRAVIS_CARGO_NIGHTLY_FEATURE=""
|
|
- secure: A/zuPuIu03Z+rqnDS/NNNjbXrg8Nc9lEGKzcBdpHgnyd23z37zreEEAKzFhjJKMx0np0ntDo5LVeLgT6d7fGaDFsJrBZHej3pxuG81MAJdLEmJNaCLCc1eCbwDHgJkEJ5HsblHTrYK0RjBvNL5I8+URuzEqXkwVr7UHJv5px1ZA=
|
|
|
|
notifications:
|
|
webhooks:
|
|
urls:
|
|
- "https://scalar.vector.im/api/neb/services/hooks/dHJhdmlzLWNpLyU0MGxldmFucyUzQXNhZmFyYWRlZy5uZXQvJTIxRkt4aGprSUNwakJWelZlQ2RGJTNBc2FmYXJhZGVnLm5ldA"
|
|
on_success: change
|
|
on_failure: always
|
|
on_start: never
|
|
|