mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
test_build_system.sh: Produce less output to avoid CI log limit
This commit is contained in:
parent
76d4f65ff9
commit
d8a60daece
@ -29,7 +29,9 @@
|
||||
[ -z ${TMP} ] && TMP="/tmp"
|
||||
# override ESP_IDF_TEMPLATE_GIT to point to a local dir if you're testing and want fast iterations
|
||||
[ -z ${ESP_IDF_TEMPLATE_GIT} ] && ESP_IDF_TEMPLATE_GIT=https://github.com/espressif/esp-idf-template.git
|
||||
export V=1
|
||||
|
||||
# uncomment next line to produce a lot more debug output
|
||||
#export V=1
|
||||
|
||||
function run_tests()
|
||||
{
|
||||
@ -133,7 +135,7 @@ function run_tests()
|
||||
# make a copy of esp-idf and CRLFify it
|
||||
CRLF_ESPIDF=${TESTDIR}/esp-idf-crlf
|
||||
mkdir -p ${CRLF_ESPIDF}
|
||||
cp -rv ${IDF_PATH}/* ${CRLF_ESPIDF}
|
||||
cp -r ${IDF_PATH}/* ${CRLF_ESPIDF}
|
||||
# don't CRLFify executable files, as Linux will fail to execute them
|
||||
find ${CRLF_ESPIDF} -type f ! -perm 755 -exec unix2dos {} \;
|
||||
make IDF_PATH=${CRLF_ESPIDF} || failure "Failed to build with CRLFs in source"
|
||||
|
Loading…
x
Reference in New Issue
Block a user