Skip to content

Commit f074194

Browse files
committed
.gitignore: ignore build/*, not build*
1 parent 6741d36 commit f074194

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

.clusterfuzzlite/build.sh

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/bin/bash -eu
2+
3+
# Build libcss and dependencies
4+
cd $SRC/libcss
5+
rm -rf build || true # Wipe old build dir if it exists, ignore if not
6+
mkdir -p build
7+
cd build
8+
meson setup .. --default-library=static
9+
ninja -j$(nproc)
10+
ninja install
11+
cd ../..
12+
13+
14+
# Set executable permissions for fuzzer build scripts
15+
chmod +x $SRC/libcss/test/fuzzers/build_google_oss_fuzzers.sh
16+
chmod +x $SRC/libcss/test/fuzzers/build_seed_corpus.sh
17+
18+
# Build fuzzers and seed corpus
19+
$SRC/libcss/test/fuzzers/build_google_oss_fuzzers.sh
20+
$SRC/libcss/test/fuzzers/build_seed_corpus.sh

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
build*
1+
build/*
22
.cache/
33
libwapcaplet/
44
libparserutils/

0 commit comments

Comments
 (0)