Skip to content

Commit fa1fd07

Browse files
author
MarcoFalke
committed
ci: Enable more shellcheck
1 parent 97fb46d commit fa1fd07

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ci/test/03_test_script.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,11 @@ if [[ "${RUN_TIDY}" == "true" ]]; then
122122
BITCOIN_CONFIG_ALL="$BITCOIN_CONFIG_ALL -DCMAKE_EXPORT_COMPILE_COMMANDS=ON"
123123
fi
124124

125-
bash -c "cmake -S $BASE_ROOT_DIR -B ${BASE_BUILD_DIR} $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( (cat $(cmake -P "${BASE_ROOT_DIR}/ci/test/GetCMakeLogFiles.cmake")) && false)"
125+
bash -c "cmake -S $BASE_ROOT_DIR -B ${BASE_BUILD_DIR} $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG" || (
126+
# shellcheck disable=SC2046
127+
cat $(cmake -P "${BASE_ROOT_DIR}/ci/test/GetCMakeLogFiles.cmake")
128+
false
129+
)
126130

127131
# shellcheck disable=SC2086
128132
cmake --build "${BASE_BUILD_DIR}" "$MAKEJOBS" --target all $GOAL || (

0 commit comments

Comments
 (0)