Skip to content

Commit 58da87b

Browse files
committed
Fix AFL configuration in CI workflow
Replace cargo afl config --build with cargo afl system-config to use system-installed AFL++ instead of trying to build bundled version.
1 parent b3fefc7 commit 58da87b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ jobs:
102102
echo "cargo-afl already installed"
103103
fi
104104
105-
# Build AFL runtime for current Rust version
106-
cargo afl config --build
105+
# Configure system for optimal AFL fuzzing performance
106+
sudo cargo afl system-config || echo "System config failed, continuing..."
107107
108108
- name: Download Go dependencies
109109
working-directory: ./diff_fuzzing

0 commit comments

Comments
 (0)