-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
create_release_zip.ps1
53 lines (43 loc) · 1.88 KB
/
create_release_zip.ps1
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
# Execute in an esp-idf enabled PowerShell
# 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 $release_foldername
mkdir build
cp .\flashing_instructions.txt $release_foldername
function BuildAndCopy($config, $folder) {
rm -Recurse -Force .\build
idf.py fullclean
cp .\$config .\sdkconfig
idf.py build
mkdir $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
BuildAndCopy "sdkconfig_esp32" "esp32"
# BuildAndCopy "sdkconfig_esp32_noUARTConsole" "esp32_noUARTConsole" # Build issue - ESP-NOW wants a console for debugging
# ESP32-S2
BuildAndCopy "sdkconfig_s2" "esp32s2"
BuildAndCopy "sdkconfig_s2_noUARTConsole" "esp32s2_noUARTConsole"
# ESP32-S3
BuildAndCopy "sdkconfig_s3" "esp32s3"
BuildAndCopy "sdkconfig_s3_noUARTConsole" "esp32s3_noUARTConsole"
BuildAndCopy "sdkconfig_s3_serial_via_JTAG" "esp32s3_USBSerial"
# ESP32-C3
BuildAndCopy "sdkconfig_c3" "esp32c3"
BuildAndCopy "sdkconfig_c3_official" "esp32c3_official"
BuildAndCopy "sdkconfig_c3_serial_via_JTAG" "esp32c3_USBSerial"
BuildAndCopy "sdkconfig_c3_noUARTConsole" "esp32c3_noUARTConsole"
# ESP32-C6
BuildAndCopy "sdkconfig_c6" "esp32c6"
BuildAndCopy "sdkconfig_c6_serial_via_JTAG" "esp32c6_USBSerial"
BuildAndCopy "sdkconfig_c6_noUARTConsole" "esp32c6_noUARTConsole"
if (Test-Path $release_name_zip) {
Remove-Item $release_name_zip -Verbose
}
Compress-Archive -Path $release_foldername -DestinationPath $release_name_zip
rm -Recurse -Force $release_foldername