ci: add build test for custom console UART pins

This commit is contained in:
Ivan Grokhotkov 2020-02-18 15:00:47 +01:00
parent f69f05ecd7
commit 1cbb2287be
5 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,6 @@
# The following lines of boilerplate have to be in your project's
# CMakeLists in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.5)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(test_build)

View File

@ -0,0 +1,6 @@
This project is for testing if the application can be built with a particular sdkconfig setting.
To add new configuration, create one more sdkconfig.ci.NAME file in this directory.
To make the configuration target-specific, add a CONFIG_IDF_TARGET="name" line.
If you need to test for anything other than building, create another test project.

View File

@ -0,0 +1,2 @@
idf_component_register(SRCS "test_main.c"
INCLUDE_DIRS ".")

View File

@ -0,0 +1,3 @@
void app_main(void)
{
}

View File

@ -0,0 +1 @@
CONFIG_ESP_CONSOLE_UART_CUSTOM=y