Auto merge of #205 - c410-f3r:fix-ci, r=mbrubeck

Fix CI

Pin `cargo install honggfuzz` version to match the same version of `Cargo.toml`
This commit is contained in:
bors-servo
2020-03-17 22:44:45 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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 = ".." }
+1 -1
View File
@@ -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%.*}"