Skip to content

Commit c243d3f

Browse files
committed
Merge branch 'bugfix/idf_example'
2 parents e3fedc5 + 32b338d commit c243d3f

File tree

8 files changed

+6
-6
lines changed

8 files changed

+6
-6
lines changed

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
echo "chunks=$chunks" >> $GITHUB_OUTPUT
172172
173173
- name: Upload sketches found
174-
if: ${{ steps.set-chunks.outputs.build_all == 'false' }}
174+
if: ${{ steps.set-chunks.outputs.build_libraries == 'true' }}
175175
uses: actions/upload-artifact@v4
176176
with:
177177
name: sketches_found
@@ -214,13 +214,13 @@ jobs:
214214
run: bash ./.github/scripts/on-push.sh ${{ matrix.chunk }} ${{ env.MAX_CHUNKS }} 1
215215

216216
- name: Download sketches found
217-
if: ${{ needs.gen-chunks.outputs.build_all == 'false' }}
217+
if: ${{ needs.gen-chunks.outputs.build_all == 'false' && needs.gen-chunks.outputs.build_libraries == 'true' }}
218218
uses: actions/download-artifact@v4
219219
with:
220220
name: sketches_found
221221

222222
- name: Build selected sketches
223-
if: ${{ needs.gen-chunks.outputs.build_all == 'false' }}
223+
if: ${{ needs.gen-chunks.outputs.build_all == 'false' && needs.gen-chunks.outputs.build_libraries == 'true' }}
224224
run: bash ./.github/scripts/on-push.sh ${{ matrix.chunk }} ${{ needs.gen-chunks.outputs.chunk_count }} 1 sketches_found.txt
225225

226226
#Upload cli compile json as artifact

idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ dependencies:
8787
version: "1.0.3"
8888
require: public
8989
examples:
90-
- path: ./idf_component_examples/Hello_world
90+
- path: ./idf_component_examples/hello_world

idf_component_examples/Hello_world/README.md renamed to idf_component_examples/hello_world/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ To create a ESP-IDF project from this example with the latest release of Arduino
1212
ESP-IDF will download all dependencies needed from the component registry and setup the project for you.
1313

1414
If you want to use cloned Arduino-esp32 repository, you can build this example directly.
15-
Go to the example folder `arduino-esp32/idf_component_examples/Hello_world`.
15+
Go to the example folder `arduino-esp32/idf_component_examples/hello_world`.
1616
First you need to comment line 6 `pre_release: true` in examples `/main/idf_component.yml`.
1717
Then just run command: `idf.py build`.
1818

1919
## Example folder contents
2020

21-
The project **Hello_world** contains one source file in C++ language [main.cpp](main/main.cpp). The file is located in folder [main](main).
21+
The project **hello_world** contains one source file in C++ language [main.cpp](main/main.cpp). The file is located in folder [main](main).
2222

2323
ESP-IDF projects are built using CMake. The project build configuration is contained in `CMakeLists.txt`
2424
files that provide set of directives and instructions describing the project's source files and targets

0 commit comments

Comments
 (0)