Skip to content

Commit a0077a8

Browse files
committed
Merge #21116: build: Disable --disable-fuzz-binary for gitian/guix builds
cb151b7 build: Disable --disable-fuzz-binary for guix builds (Hennadii Stepanov) fd7caae build: Disable --disable-fuzz-binary for gitian builds (Hennadii Stepanov) Pull request description: Fuzz binary is not shipped to users. This PR saves hundreds MB of the disk space for containers. ACKs for top commit: MarcoFalke: review ACK cb151b7 fanquake: ACK cb151b7 Tree-SHA512: 858e3816576c307b47915bb05de79a28029beaef8835c01f1bd6a764a0cf7f7f63ef8c2dc2c5944cb36cc9f4788d9b0590b8a5dda96940167252ba371cdbd078
2 parents d864696 + cb151b7 commit a0077a8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

contrib/gitian-descriptors/gitian-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ script: |
4747
4848
WRAP_DIR=$HOME/wrapped
4949
HOSTS="x86_64-linux-gnu arm-linux-gnueabihf aarch64-linux-gnu powerpc64-linux-gnu powerpc64le-linux-gnu riscv64-linux-gnu"
50-
CONFIGFLAGS="--enable-glibc-back-compat --enable-reduce-exports --disable-bench --disable-gui-tests"
50+
CONFIGFLAGS="--enable-glibc-back-compat --enable-reduce-exports --disable-bench --disable-gui-tests --disable-fuzz-binary"
5151
FAKETIME_HOST_PROGS="gcc g++"
5252
FAKETIME_PROGS="date ar ranlib nm"
5353
HOST_CFLAGS="-O2 -g"

contrib/gitian-descriptors/gitian-osx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ script: |
4040
4141
WRAP_DIR=$HOME/wrapped
4242
HOSTS="x86_64-apple-darwin18"
43-
CONFIGFLAGS="--enable-reduce-exports --disable-bench --disable-gui-tests XORRISOFS=${WRAP_DIR}/xorrisofs DMG=${WRAP_DIR}/dmg"
43+
CONFIGFLAGS="--enable-reduce-exports --disable-bench --disable-gui-tests --disable-fuzz-binary XORRISOFS=${WRAP_DIR}/xorrisofs DMG=${WRAP_DIR}/dmg"
4444
FAKETIME_HOST_PROGS=""
4545
FAKETIME_PROGS="ar ranlib date dmg xorrisofs"
4646

contrib/gitian-descriptors/gitian-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ script: |
3131
3232
WRAP_DIR=$HOME/wrapped
3333
HOSTS="x86_64-w64-mingw32"
34-
CONFIGFLAGS="--enable-reduce-exports --disable-bench --disable-gui-tests"
34+
CONFIGFLAGS="--enable-reduce-exports --disable-bench --disable-gui-tests --disable-fuzz-binary"
3535
FAKETIME_HOST_PROGS="ar ranlib nm windres strip objcopy"
3636
FAKETIME_PROGS="date makensis zip"
3737
HOST_CFLAGS="-O2 -g -fno-ident"

contrib/guix/libexec/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ fi
204204
###########################
205205

206206
# CONFIGFLAGS
207-
CONFIGFLAGS="--enable-reduce-exports --disable-bench --disable-gui-tests"
207+
CONFIGFLAGS="--enable-reduce-exports --disable-bench --disable-gui-tests --disable-fuzz-binary"
208208
case "$HOST" in
209209
*linux*) CONFIGFLAGS+=" --enable-glibc-back-compat" ;;
210210
esac

0 commit comments

Comments
 (0)