File tree Expand file tree Collapse file tree 8 files changed +6
-6
lines changed
idf_component_examples/hello_world Expand file tree Collapse file tree 8 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ jobs:
171
171
echo "chunks=$chunks" >> $GITHUB_OUTPUT
172
172
173
173
- name : Upload sketches found
174
- if : ${{ steps.set-chunks.outputs.build_all == 'false ' }}
174
+ if : ${{ steps.set-chunks.outputs.build_libraries == 'true ' }}
175
175
uses : actions/upload-artifact@v4
176
176
with :
177
177
name : sketches_found
@@ -214,13 +214,13 @@ jobs:
214
214
run : bash ./.github/scripts/on-push.sh ${{ matrix.chunk }} ${{ env.MAX_CHUNKS }} 1
215
215
216
216
- 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' }}
218
218
uses : actions/download-artifact@v4
219
219
with :
220
220
name : sketches_found
221
221
222
222
- 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' }}
224
224
run : bash ./.github/scripts/on-push.sh ${{ matrix.chunk }} ${{ needs.gen-chunks.outputs.chunk_count }} 1 sketches_found.txt
225
225
226
226
# Upload cli compile json as artifact
Original file line number Diff line number Diff line change @@ -87,4 +87,4 @@ dependencies:
87
87
version : " 1.0.3"
88
88
require : public
89
89
examples :
90
- - path : ./idf_component_examples/Hello_world
90
+ - path : ./idf_component_examples/hello_world
File renamed without changes.
Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ To create a ESP-IDF project from this example with the latest release of Arduino
12
12
ESP-IDF will download all dependencies needed from the component registry and setup the project for you.
13
13
14
14
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 ` .
16
16
First you need to comment line 6 ` pre_release: true ` in examples ` /main/idf_component.yml ` .
17
17
Then just run command: ` idf.py build ` .
18
18
19
19
## Example folder contents
20
20
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 ) .
22
22
23
23
ESP-IDF projects are built using CMake. The project build configuration is contained in ` CMakeLists.txt `
24
24
files that provide set of directives and instructions describing the project's source files and targets
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments