Merge branch 'bugfix/idf_ci_build_is_not_set' into 'master'

ci: Fix environment variable IDF_CI_BUILD is not set

See merge request espressif/esp-idf!20944
This commit is contained in:
Zim Kalinowski
2022-11-09 00:47:50 +08:00
7 changed files with 11 additions and 9 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ DEBUG_SHELL=${DEBUG_SHELL:-"0"}
# Compiler flags to thoroughly check the IDF code in some CI jobs
# (Depends on default options '-Wno-error=XXX' used in the IDF build system)
PEDANTIC_FLAGS="-DIDF_CI_BUILD -Werror -Werror=deprecated-declarations -Werror=unused-variable -Werror=unused-but-set-variable -Werror=unused-function"
PEDANTIC_FLAGS="-Werror -Werror=deprecated-declarations -Werror=unused-variable -Werror=unused-but-set-variable -Werror=unused-function"
export PEDANTIC_CFLAGS="${PEDANTIC_FLAGS} -Wstrict-prototypes"
export PEDANTIC_CXXFLAGS="${PEDANTIC_FLAGS}"