Skip to content

Commit d0bf19b

Browse files
committed
replace groff-base with stub (for openldap), install ninja
To test #181. The ossfuzz CI job seems to pull `scripts/ossfuzzdeps.sh` from the master branch while running on a PR. This patch is an attempt to modify that file to finish testing said PR. In case of issues, I revert or follow up. Ref: #181
1 parent 0cc2e04 commit d0bf19b

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

scripts/ossfuzzdeps.sh

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ else
2121
fi
2222

2323
# Download dependencies for oss-fuzz
24-
$SUDO apt-get update
25-
$SUDO apt-get install -y make \
24+
$SUDO apt-get -o Dpkg::Use-Pty=0 update
25+
$SUDO apt-get -o Dpkg::Use-Pty=0 install -y \
26+
make \
2627
autoconf \
2728
automake \
2829
libtool \
@@ -32,4 +33,8 @@ $SUDO apt-get install -y make \
3233
pkg-config \
3334
wget \
3435
cmake \
35-
groff-base
36+
ninja-build
37+
38+
# for openldap to avoid installing groff-base
39+
$SUDO touch /usr/bin/soelim
40+
$SUDO chmod +x /usr/bin/soelim

0 commit comments

Comments
 (0)