Skip to content

Commit 15e33ae

Browse files
committed
ci(partitions): Use default partition for compilation in CI
1 parent e403f0b commit 15e33ae

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/scripts/sketch_utils.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@ function build_sketch(){ # build_sketch <ide_path> <user_path> <path-to-ino> [ex
8585

8686
# Default FQBN options if none were passed in the command line.
8787

88-
esp32_opts="PSRAM=enabled,PartitionScheme=huge_app,FlashMode=dio"
89-
esp32s2_opts="PSRAM=enabled,PartitionScheme=huge_app,FlashMode=dio"
90-
esp32s3_opts="PSRAM=opi,USBMode=default,PartitionScheme=huge_app,FlashMode=dio"
91-
esp32c3_opts="PartitionScheme=huge_app,FlashMode=dio"
92-
esp32c6_opts="PartitionScheme=huge_app,FlashMode=dio"
93-
esp32h2_opts="PartitionScheme=huge_app,FlashMode=dio"
88+
esp32_opts="PSRAM=enabled,FlashMode=dio"
89+
esp32s2_opts="PSRAM=enabled,FlashMode=dio"
90+
esp32s3_opts="PSRAM=opi,USBMode=default,FlashMode=dio"
91+
esp32c3_opts="FlashMode=dio"
92+
esp32c6_opts="FlashMode=dio"
93+
esp32h2_opts="FlashMode=dio"
9494

9595
# Select the common part of the FQBN based on the target. The rest will be
9696
# appended depending on the passed options.

0 commit comments

Comments
 (0)