From 257878ddb4dcb9afe7403a99cf54e5d45301e469 Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Wed, 16 Oct 2024 12:22:09 +0200 Subject: [PATCH] ci: change logging level from debug to info for build jobs --- .gitlab/ci/build.yml | 2 +- tools/ci/build_template_app.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab/ci/build.yml b/.gitlab/ci/build.yml index 376946d0bd..e4e820099b 100644 --- a/.gitlab/ci/build.yml +++ b/.gitlab/ci/build.yml @@ -126,7 +126,7 @@ gcc_static_analyzer: ANALYZING_APP: "examples/get-started/hello_world" script: - echo "CONFIG_COMPILER_STATIC_ANALYZER=y" >> ${ANALYZING_APP}/sdkconfig.defaults - - python -m idf_build_apps build -vv -p ${ANALYZING_APP} -t all + - python -m idf_build_apps build -v -p ${ANALYZING_APP} -t all ######################################## # Clang Build Apps Without Tests Cases # diff --git a/tools/ci/build_template_app.sh b/tools/ci/build_template_app.sh index c77c85026a..59457ad0cb 100755 --- a/tools/ci/build_template_app.sh +++ b/tools/ci/build_template_app.sh @@ -54,7 +54,7 @@ build_stage2() { # Override EXTRA_CFLAGS and EXTRA_CXXFLAGS in the environment export EXTRA_CFLAGS=${PEDANTIC_CFLAGS/-Werror=unused-variable -Werror=unused-but-set-variable -Werror=unused-function/} export EXTRA_CXXFLAGS=${PEDANTIC_CXXFLAGS/-Werror=unused-variable -Werror=unused-but-set-variable -Werror=unused-function/} - python -m idf_build_apps build -vv \ + python -m idf_build_apps build -v \ -p ${TEMPLATE_APP_PATH} \ -t all \ ${CONFIG_STR} \ @@ -69,7 +69,7 @@ build_stage2() { build_stage1() { CONFIG_STR=$(get_config_str sdkconfig.ci2.*=) - python -m idf_build_apps build -vv \ + python -m idf_build_apps build -v \ -p ${TEMPLATE_APP_PATH} \ -t all \ ${CONFIG_STR} \