mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Add CI to build ossfuzz fuzzer binaries
This commit is contained in:
Executable
+13
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env sh
|
||||
set -e
|
||||
|
||||
TEMPDIR="src"
|
||||
cd /
|
||||
mkdir -p $TEMPDIR
|
||||
(
|
||||
cd $TEMPDIR
|
||||
git clone --depth 1 https://github.com/google/libprotobuf-mutator.git
|
||||
mkdir -p LPM
|
||||
cd LPM
|
||||
cmake ../libprotobuf-mutator -GNinja -DLIB_PROTO_MUTATOR_DOWNLOAD_PROTOBUF=ON -DLIB_PROTO_MUTATOR_TESTING=OFF -DCMAKE_BUILD_TYPE=Release && ninja install
|
||||
)
|
||||
Reference in New Issue
Block a user