File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -112,9 +112,11 @@ jobs:
112
112
- name : Create custom build script
113
113
working-directory : ${{ github.workspace }}/ci
114
114
run : |
115
- echo 'import build_platform' > build_esp32_stable.py
116
- echo 'build_platform.test_examples_in_folder("'${{ matrix.arduino-platform }}'")' >> build_esp32_v2.py
115
+ echo 'import build_platform' > build_esp32_v2.py
116
+ echo 'build_platform.test_examples_in_folder("'${{ matrix.arduino-platform }}'", build_platform.BUILD_DIR)' >> build_esp32_v2.py
117
+ echo 'exit(build_platform.success)' >> build_esp32_v2.py
118
+ cat build_esp32_v2.py
117
119
118
120
- name : test platforms
119
121
run : |
120
- python3 ci/build_esp32_stable .py
122
+ python3 ci/build_esp32_v2 .py
Original file line number Diff line number Diff line change @@ -24,5 +24,6 @@ def main(dir):
24
24
click .echo (f"Updating { f } " )
25
25
shutil .copy (sample_file , f )
26
26
27
+
27
28
if __name__ == '__main__' :
28
29
main ()
You can’t perform that action at this time.
0 commit comments