forked from stepancheg/rust-protobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (34 loc) · 787 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
sudo: false
language: rust
cache:
directories:
- $HOME/.ccache
matrix:
include:
- name: Stable
rust: stable
env: PROTOBUF_VERSION=3.6.1
- name: Beta
rust: beta
env: PROTOBUF_VERSION=3.6.1
- name: Stable bytes
rust: stable
env: PROTOBUF_VERSION=3.6.1 RUST_PROTOBUF_FEATURES=with-bytes
- name: Stable serde
rust: stable
env: PROTOBUF_VERSION=3.6.1 RUST_PROTOBUF_FEATURES=with-serde
- name: Nightly all features
rust: nightly
env: PROTOBUF_VERSION=3.6.1 RUST_PROTOBUF_FEATURES=with-serde,with-bytes
- name: Windows
os: windows
rust: stable
env: PROTOBUF_VERSION=3.6.1 ON_WINDOWS=1
# allow_failures:
# - os: windows
script:
- ci/run.sh
notifications:
email:
on_success: never
# vim: set ts=2 sw=2 et: