Skip to content

Commit dc71160

Browse files
committed
Missing stuff
1 parent 6db61f1 commit dc71160

File tree

2 files changed

+24
-6
lines changed

2 files changed

+24
-6
lines changed

.travis.yml

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
11
language: rust
2-
rust:
3-
- 1.20.0
4-
- nightly
5-
- beta
6-
- stable
2+
addons:
3+
apt:
4+
update: true
5+
packages:
6+
- binutils-dev
7+
- libunwind8-dev
8+
- libcurl4-openssl-dev
9+
- libelf-dev
10+
- libdw-dev
11+
- cmake
12+
- gcc
13+
- libiberty-dev
14+
matrix:
15+
include:
16+
- rust: 1.20.0
17+
env: DO_FUZZ=true
18+
- rust: nightly
19+
- rust: beta
20+
env: DO_FUZZ=true
21+
- rust: stable
722
script: |
823
cargo build --verbose &&
924
cargo test --verbose &&
@@ -12,7 +27,10 @@ script: |
1227
([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --verbose --features union) &&
1328
([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --verbose --all-features) &&
1429
([ $TRAVIS_RUST_VERSION != nightly ] || cargo bench --verbose bench) &&
30+
if [ "$DO_FUZZ" = true ]
31+
then
1532
(
1633
cd fuzz
1734
./travis-fuzz.sh
1835
)
36+
fi

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ honggfuzz_fuzz = ["honggfuzz"]
1414

1515

1616
[dependencies]
17-
honggfuzz = { version = "0.5", optional = true }
17+
honggfuzz = { version = "0.5.45", optional = true }
1818
afl = { version = "0.4", optional = true }
1919
smallvec = { path = ".." }
2020

0 commit comments

Comments
 (0)