-
Notifications
You must be signed in to change notification settings - Fork 479
/
Copy path.travis.yml
69 lines (63 loc) · 1.66 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
62
63
64
65
66
67
68
69
language: rust
cache: cargo
branches:
only:
- master
- staging
- trying
matrix:
fast_finish: true
include:
# Test crates on their minimum Rust versions.
- rust: 1.28.0
name: "crossbeam on 1.28.0"
script: ./ci/crossbeam.sh
- rust: 1.26.0
name: "crossbeam-channel on 1.26.0"
script: ./ci/crossbeam-channel.sh
- rust: 1.28.0
name: "crossbeam-deque on 1.28.0"
script: ./ci/crossbeam-deque.sh
- rust: 1.26.0
name: "crossbeam-epoch on 1.26.0"
script: ./ci/crossbeam-epoch.sh
- rust: 1.28.0
name: "crossbeam-skiplist on 1.28.0"
script: ./ci/crossbeam-skiplist.sh
- rust: 1.26.0
name: "crossbeam-utils on 1.26.0"
script: ./ci/crossbeam-utils.sh
# Test crates on nightly Rust.
- rust: nightly
name: "crossbeam on nightly"
script: ./ci/crossbeam.sh
- rust: nightly
name: "crossbeam-channel on nightly"
script: ./ci/crossbeam-channel.sh
- rust: nightly
name: "crossbeam-deque on nightly"
script: ./ci/crossbeam-deque.sh
- rust: nightly
name: "crossbeam-epoch on nightly"
script: ./ci/crossbeam-epoch.sh
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise
- llvm-toolchain-precise-3.8
packages:
- llvm-3.8
- llvm-3.8-dev
- clang-3.8
- clang-3.8-dev
- rust: nightly
name: "crossbeam-skiplist on nightly"
script: ./ci/crossbeam-skiplist.sh
- rust: nightly
name: "crossbeam-utils on nightly"
script: ./ci/crossbeam-utils.sh
# Check for duplicate dependencies.
- rust: stable
name: "dependency tree check"
script: ./ci/dependencies.sh