From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp3.mail.ru (smtp3.mail.ru [94.100.179.58]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id E803945C307 for ; Mon, 30 Nov 2020 23:25:37 +0300 (MSK) From: sergeyb@tarantool.org Date: Mon, 30 Nov 2020 23:24:50 +0300 Message-Id: <1c89eb31ec1bc4fbe41749d620e8f30899e12c88.1606766417.git.sergeyb@tarantool.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 3/4] travis: build tarantool with ENABLE_FUZZER List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tarantool-patches@dev.tarantool.org, imun@tarantool.org, sergepetrenko@tarantool.org From: Sergey Bronnikov OSS Fuzz has a limited number of runs per day and now it is a 4 runs. Option ENABLE_FUZZERS is enabled to make sure that building of fuzzers is not broken. Part of #1809 --- .travis.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.mk b/.travis.mk index 238e31cda..6d843cae9 100644 --- a/.travis.mk +++ b/.travis.mk @@ -154,7 +154,7 @@ coverage_debian: deps_debian test_coverage_debian_no_deps build_asan_debian: CC=clang-11 CXX=clang++-11 cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DENABLE_WERROR=ON -DENABLE_ASAN=ON -DENABLE_UB_SANITIZER=ON \ - ${CMAKE_EXTRA_PARAMS} + -DENABLE_FUZZER=ON ${CMAKE_EXTRA_PARAMS} make -j test_asan_debian_no_deps: build_asan_debian -- 2.25.1