forked from Gilnaa/memoffset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
47 lines (41 loc) · 1.15 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
sudo: false
language: rust
cache:
cargo: true
matrix:
include:
- name: miri
env: TRAVIS_MIRI_JOB # make sure the cache is not shared with other "nightly" jobs
rust: nightly
script:
- sh ci/miri.sh
- rust: 1.19.0 # Oldest supported (first version with numeric fields in struct patterns)
- rust: 1.31.0 # Oldest supported with allow(clippy)
- rust: 1.36.0 # Oldest supported with MaybeUninit
- rust: stable
- rust: beta
- rust: nightly
- name: all-features
rust: nightly
script:
# `--lib` added to prevent doctests from being compiled.
# This is due to `unstable_const` requiring extra `feature(...)` directives
# which the doctests do not have.
- cargo test --verbose --all-features --lib
- name: rustfmt
rust: 1.36.0
install:
- rustup component add rustfmt
script:
- cargo fmt -- --check
- name: deny-warnings
env: RUSTFLAGS="-D warnings"
rust: 1.33.0 # `stable`: Locking down for consistent behavior
script:
- cargo check --tests
install:
- rustc -Vv
- cargo -V
script:
- rm -rf target/debug/deps/*memoffset* # Avoid rustdoc problems
- cargo test --verbose