Skip to content

Commit

Permalink
Auto merge of #205 - c410-f3r:fix-ci, r=mbrubeck
Browse files Browse the repository at this point in the history
Fix CI

Pin `cargo install honggfuzz` version to match the same version of `Cargo.toml`
  • Loading branch information
bors-servo committed Mar 18, 2020
2 parents b640094 + 9f2f610 commit 02cdf24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ honggfuzz_fuzz = ["honggfuzz"]


[dependencies]
honggfuzz = { version = "0.5.45", optional = true }
honggfuzz = { version = "0.5.47", optional = true }
afl = { version = "0.4", optional = true }
smallvec = { path = ".." }

Expand Down
2 changes: 1 addition & 1 deletion fuzz/travis-fuzz.sh
@@ -1,6 +1,6 @@
#!/bin/bash
set -e
cargo install --force honggfuzz
cargo install --force honggfuzz --version 0.5.47
for TARGET in fuzz_targets/*; do
FILENAME=$(basename $TARGET)
FILE="${FILENAME%.*}"
Expand Down

0 comments on commit 02cdf24

Please sign in to comment.