There was an error while loading. Please reload this page.
1 parent a0ee750 commit 7e2af13Copy full SHA for 7e2af13
.github/workflows/build.yml
@@ -46,9 +46,17 @@ jobs:
46
# Then enable the correct target
47
sed -i 's/^\/\/#define '${{ matrix.config_define }}'/#define '${{ matrix.config_define }}'/' main/config.h
48
49
+ # Remove existing sdkconfig files to avoid target conflicts
50
+ rm -f sdkconfig sdkconfig.old
51
+
52
# Configure project for target
53
idf.py set-target ${{ matrix.target }}
54
55
+ # Copy the default configuration
56
+ if [ -f sdkconfig.defaults ]; then
57
+ cp sdkconfig.defaults sdkconfig
58
+ fi
59
60
- name: Build project
61
run: idf.py build
62
0 commit comments