From 5c6aec57ce1a1ab4b6f8f005f7c6c3b953b297f8 Mon Sep 17 00:00:00 2001 From: Roberto Date: Wed, 17 Jan 2024 03:31:03 +0100 Subject: [PATCH] change build script --- ci/test/03_test_script.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ci/test/03_test_script.sh b/ci/test/03_test_script.sh index 2ca882e98..53b083759 100755 --- a/ci/test/03_test_script.sh +++ b/ci/test/03_test_script.sh @@ -138,14 +138,14 @@ bash -c "${BASE_ROOT_DIR}/configure --cache-file=config.cache $BITCOIN_CONFIG_AL make distdir VERSION="$HOST" -cd "${BASE_BUILD_DIR}/bitcoin-$HOST" +# cd "${BASE_BUILD_DIR}/bitcoin-$HOST" bash -c "./configure --cache-file=../config.cache $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG" || ( (cat config.log) && false) -if [[ "${RUN_TIDY}" == "true" ]]; then - MAYBE_BEAR="bear --config src/.bear-tidy-config" - MAYBE_TOKEN="--" -fi +# if [[ "${RUN_TIDY}" == "true" ]]; then +# MAYBE_BEAR="bear --config src/.bear-tidy-config" +# MAYBE_TOKEN="--" +# fi bash -c "${MAYBE_BEAR} ${MAYBE_TOKEN} make $MAKEJOBS $GOAL" || ( echo "Build failure. Verbose build follows." && make "$GOAL" V=1 ; false )