From c750be23520d24c930fa3d7bebed7232aaa6b5cd Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 2 May 2024 16:02:28 +1000 Subject: [PATCH] fuzz: Update generate-files.sh Recently we modified the fuzz job manually and forgot about the `generate-files.sh` file. Update the script to match the current CI job, running it now produces the same file `cron-daily-fuzz.sh`. --- fuzz/generate-files.sh | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/fuzz/generate-files.sh b/fuzz/generate-files.sh index bbb36ea46..b3b32fb9f 100755 --- a/fuzz/generate-files.sh +++ b/fuzz/generate-files.sh @@ -22,7 +22,7 @@ cargo-fuzz = true [dependencies] honggfuzz = { version = "0.5.55", default-features = false } -bitcoin = { version = "0.31.0", features = [ "serde" ] } +bitcoin = { path = "../bitcoin", features = [ "serde" ] } serde = { version = "1.0.103", features = [ "derive" ] } serde_json = "1.0" @@ -40,16 +40,16 @@ EOF done # 2. Generate .github/workflows/fuzz.yml -cat > "$REPO_DIR/.github/workflows/fuzz.yml" < "$REPO_DIR/.github/workflows/cron-daily-fuzz.yml" <