Skip to content

Commit

Permalink
fix(build): add empty json strings to avoid project desc. parsing error
Browse files Browse the repository at this point in the history
  • Loading branch information
onkwon committed Jan 30, 2024
1 parent 67713c1 commit 5947758
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ jobs:
echo "MEMSEG_RESULT=$(echo .github/memsize.txt)" >> $GITHUB_ENV
echo "MEMSEG_BASE=$(echo .github/memsize.baseline)" >> $GITHUB_ENV
echo "MEMSEG_BASE_TMP=$(echo .github/memsize_tmp.baseline)" >> $GITHUB_ENV
- name: UnitTest
run: |
echo "Hello" || true
- name: Build
run: |
. $IDF_PATH/export.sh
Expand Down
2 changes: 2 additions & 0 deletions ports/esp-idf/build.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ set(PROJECT_EXECUTABLE ${CMAKE_PROJECT_NAME}.elf)
set(PROJECT_BIN ${CMAKE_PROJECT_NAME}.bin)
set(build_components_json "[]")
set(build_component_paths_json "[]")
set(common_component_reqs_json "\"\"")
set(build_component_info_json "\"\"")
configure_file("${IDF_PATH}/tools/cmake/project_description.json.in"
"${CMAKE_CURRENT_BINARY_DIR}/project_description.json")

Expand Down

0 comments on commit 5947758

Please sign in to comment.