96 lines
2.3 KiB
Bash
Executable File
96 lines
2.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Stop on first error, echo on
|
|
set -e
|
|
set -x
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
. "$SCRIPT_DIR/build-common.sh"
|
|
|
|
for i in "$@"
|
|
do
|
|
case $i in
|
|
-Wno-error)
|
|
WERROR=0
|
|
shift
|
|
;;
|
|
-b*)
|
|
FLAVOR="${i#*b}"
|
|
shift
|
|
;;
|
|
esac
|
|
done
|
|
|
|
# Add GCC_ARM to PATH
|
|
if [[ -n ${GCC_ARM} ]] ; then
|
|
export PATH=${GCC_ARM}:$PATH
|
|
fi
|
|
|
|
: "${SRCDIR:=$(dirname "$(pwd)/$0")/..}"
|
|
|
|
# Generate EDGETX_VERSION_SUFFIX if not already set
|
|
if [[ -z ${EDGETX_VERSION_SUFFIX} ]]; then
|
|
gh_type=$(echo "$GITHUB_REF" | awk -F / '{print $2}') #heads|tags|pull
|
|
if [[ $gh_type = "tags" ]]; then
|
|
# tags: refs/tags/<tag_name>
|
|
gh_tag=${GITHUB_REF##*/}
|
|
export EDGETX_VERSION_TAG=$gh_tag
|
|
elif [[ $gh_type = "pull" ]]; then
|
|
# pull: refs/pull/<pr_number>/merge
|
|
gh_pull_number=PR$(echo "$GITHUB_REF" | awk -F / '{print $3}')
|
|
export EDGETX_VERSION_SUFFIX=$gh_pull_number
|
|
elif [[ $gh_type = "heads" ]]; then
|
|
# heads: refs/heads/<branch_name>
|
|
gh_branch=${GITHUB_REF##*/}
|
|
export EDGETX_VERSION_SUFFIX=$gh_branch
|
|
fi
|
|
fi
|
|
|
|
: "${BUILD_TYPE:=Release}"
|
|
: "${COMMON_OPTIONS:="-DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_RULE_MESSAGES=OFF -Wno-dev "}"
|
|
: "${EXTRA_OPTIONS:="$EXTRA_OPTIONS"}"
|
|
|
|
COMMON_OPTIONS+=${EXTRA_OPTIONS}" "
|
|
|
|
: "${FIRMARE_TARGET:="firmware-size"}"
|
|
|
|
# Determine parallel jobs
|
|
determine_max_jobs
|
|
|
|
# workaround for GH repo owner
|
|
git config --global --add safe.directory "$(pwd)"
|
|
|
|
# wipe build directory clean
|
|
rm -rf build && mkdir -p build && cd build
|
|
|
|
GIT_SHA_SHORT=$(git rev-parse --short HEAD)
|
|
|
|
target_names=$(echo "$FLAVOR" | tr '[:upper:]' '[:lower:]' | tr ';' '\n')
|
|
|
|
for target_name in $target_names
|
|
do
|
|
fw_name="${target_name}-${GIT_SHA_SHORT}"
|
|
BUILD_OPTIONS=${COMMON_OPTIONS}
|
|
|
|
echo "Building ${fw_name}"
|
|
|
|
if ! get_target_build_options "$target_name"; then
|
|
echo "Error: Failed to find a match for target '$target_name'"
|
|
exit 1
|
|
fi
|
|
|
|
cmake ${BUILD_OPTIONS} "${SRCDIR}"
|
|
|
|
cmake_build_parallel . --target arm-none-eabi-configure
|
|
cmake_build_parallel arm-none-eabi --target ${FIRMARE_TARGET}
|
|
|
|
rm -f CMakeCache.txt arm-none-eabi/CMakeCache.txt
|
|
|
|
if [ -f "arm-none-eabi/firmware.uf2" ]; then
|
|
mv arm-none-eabi/firmware.uf2 "../${fw_name}.uf2"
|
|
else
|
|
mv arm-none-eabi/firmware.bin "../${fw_name}.bin"
|
|
fi
|
|
|
|
done
|