-
-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathcreate_release_zip.sh
62 lines (50 loc) · 1.91 KB
/
create_release_zip.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/bin/bash
# Execute in an esp-idf enabled shell
# This script will create a combined zip file containing binaries for all supported esp32 boards
release_foldername="DroneBridge_ESP32_nightly"
release_name_zip="DroneBridge_ESP32_nightly.zip"
mkdir -p $release_foldername
mkdir -p build
cp ./flashing_instructions.txt $release_foldername
# Function to build and copy binaries for different configurations
build_and_copy() {
config=$1
folder=$2
rm -rf ./build
cp $config sdkconfig
idf.py fullclean
cp $config sdkconfig
idf.py build
mkdir -p $release_foldername/$folder
cp ./build/flash_args $release_foldername/$folder/flash_args.txt
cp ./build/db_esp32.bin $release_foldername/$folder
cp ./build/bootloader/bootloader.bin $release_foldername/$folder
cp ./build/www.bin $release_foldername/$folder
cp ./build/partition_table/partition-table.bin $release_foldername/$folder
}
# ESP32
build_and_copy sdkconfig_esp32 esp32
# build_and_copy sdkconfig_esp32_noUARTConsole esp32_noUARTConsole # Build issue - ESP-NOW wants a console for debugging
# ESP32-S2
build_and_copy sdkconfig_s2 esp32s2
build_and_copy sdkconfig_s2_noUARTConsole esp32s2_noUARTConsole
# ESP32-S3
build_and_copy sdkconfig_s3 esp32s3
build_and_copy sdkconfig_s3_noUARTConsole esp32s3_noUARTConsole
build_and_copy sdkconfig_s3_serial_via_JTAG esp32s3_USBSerial
# ESP32-C3
build_and_copy sdkconfig_c3 esp32c3
build_and_copy sdkconfig_c3_official esp32c3_official
build_and_copy sdkconfig_c3_serial_via_JTAG esp32c3_USBSerial
build_and_copy sdkconfig_c3_noUARTConsole esp32c3_noUARTConsole
# ESP32-C6
build_and_copy sdkconfig_c6 esp32c6
build_and_copy sdkconfig_c6_serial_via_JTAG esp32c6_USBSerial
build_and_copy sdkconfig_c6_noUARTConsole esp32c6_noUARTConsole
# Create the zip file
if [ -f $release_name_zip ]; then
rm -v $release_name_zip
fi
zip -r $release_name_zip $release_foldername
# Clean up
# rm -rf $release_foldername