Tactiliest/Buildscripts/build-and-release-all.sh
Ken Van Hoeylandt f664de898d
Improved build scripting and CI (#123)
- Simplified board ids/naming in all build scripting
- Implemented archiving of build artifacts for all devices in pipelines (including symbols releases for debugging)
- Implemented building and archiving of SDK for esp32 and esp32s3 in pipelines
- Flattened SDK release folder structure
- Renamed "Tactility-(ARCH)-SDK" to "TactilitySDK-(ARCH)" (aligns with "default" folder name, that's without the (ARCH))
2024-12-14 22:51:47 +01:00

35 lines
538 B
Bash
Executable File

#!/bin/bash
function build() {
Buildscripts/build.sh $1
}
function release() {
Buildscripts/release.sh $1
}
function releaseSdk() {
Buildscripts/release-sdk.sh $1
}
SECONDS=0
build lilygo-tdeck
release lilygo-tdeck
releaseSdk release/TactilitySDK-esp32s3
build yellow-board
release yellow-board
releaseSdk release/TactilitySDK-esp32
build m5stack-core2
release m5stack-core2
build m5stack-cores3
release m5stack-cores3
duration=$SECONDS
echo "Finished in $((duration / 60)) minutes and $((duration % 60)) seconds."