-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
61 lines (45 loc) · 1.01 KB
/
.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
addons:
apt:
packages:
- gcc-multilib
before_script:
- rustup target add $ALT
cache: cargo
dist: trusty
git:
depth: 1
language: rust
matrix:
allow_failures:
- rust: nightly
exclude:
- rust: stable
include:
- env: TARGET=x86_64-unknown-linux-gnu
ALT=i686-unknown-linux-gnu
- env: TARGET=x86_64-apple-darwin
ALT=i686-apple-darwin
os: osx
- env: TARGET=x86_64-unknown-linux-gnu
ALT=i686-unknown-linux-gnu
rust: beta
- env: TARGET=x86_64-apple-darwin
ALT=i686-apple-darwin
os: osx
rust: beta
- env: TARGET=x86_64-unknown-linux-gnu
ALT=i686-unknown-linux-gnu
rust: nightly
- env: TARGET=x86_64-apple-darwin
ALT=i686-apple-darwin
os: osx
rust: nightly
notifications:
email:
on_success: never
rust: stable
script:
- cargo build --verbose --all-features
- cargo test --verbose --all-features --jobs 4
- cargo doc --verbose --all-features
sudo: required