Merge pull request #31244 from nikitamikhaylov/disable-fuzz-builds

Disable fuzzer builds in CI
This commit is contained in:
alesapin 2021-11-10 16:42:08 +03:00 committed by GitHub
commit 0b28474f09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 14 deletions

View File

@ -81,11 +81,11 @@ then
fi fi
# Also build fuzzers if any sanitizer specified # Also build fuzzers if any sanitizer specified
if [ -n "$SANITIZER" ] # if [ -n "$SANITIZER" ]
then # then
# Currently we are in build/build_docker directory # # Currently we are in build/build_docker directory
../docker/packager/other/fuzzer.sh # ../docker/packager/other/fuzzer.sh
fi # fi
ccache --show-config ||: ccache --show-config ||:
ccache --show-stats ||: ccache --show-stats ||:

View File

@ -31,15 +31,15 @@ then
fi fi
# Also build fuzzers if any sanitizer specified # Also build fuzzers if any sanitizer specified
if [ -n "$SANITIZER" ] # if [ -n "$SANITIZER" ]
then # then
# Script is supposed that we are in build directory. # # Script is supposed that we are in build directory.
mkdir -p build/build_docker # mkdir -p build/build_docker
cd build/build_docker # cd build/build_docker
# Launching build script # # Launching build script
../docker/packager/other/fuzzer.sh # ../docker/packager/other/fuzzer.sh
cd # cd
fi # fi
ccache --show-config ||: ccache --show-config ||:
ccache --show-stats ||: ccache --show-stats ||: