ci(common): updated github actions(checkout, upload, download) v3 to 4, Ubuntu 20.04 to v22.04

This commit is contained in:
Suren Gabrielyan
2024-01-29 19:34:42 +04:00
parent 3f74b4e8c0
commit a23a0027fa
17 changed files with 56 additions and 55 deletions

View File

@ -6,7 +6,7 @@ set(EXTRA_COMPONENT_DIRS # Add esp_modem component and linux port components
../..
../../port/linux)
set(COMPONENTS esp_modem main)
set(COMPONENTS main)
project(host_modem_test)
idf_component_get_property(esp_modem esp_modem COMPONENT_LIB)

View File

@ -361,7 +361,7 @@ extern "C" int app_main(void)
// Use more descriptive error handling
if (result != 0) {
printf("Test failed with result %d. Refer to the Catch2 documentation for error details.\n", result);
printf("Test failed with result %d.\n", result);
} else {
printf("All tests passed successfully.\n");
}