mirror of
https://github.com/meshtastic/firmware.git
synced 2026-05-24 16:58:01 -04:00
Fake success is BS! We should fail when we fail. Fixes issues with Debian sourcedebs silently failing to build ocassionally (due to github 502s, etc).
38 lines
1.5 KiB
Bash
Executable File
38 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/bash
|
|
set -e
|
|
export DEBEMAIL="jbennett@incomsystems.biz"
|
|
export PLATFORMIO_LIBDEPS_DIR=pio/libdeps
|
|
export PLATFORMIO_PACKAGES_DIR=pio/packages
|
|
export PLATFORMIO_CORE_DIR=pio/core
|
|
export PLATFORMIO_SETTING_ENABLE_TELEMETRY=0
|
|
export PLATFORMIO_SETTING_CHECK_PLATFORMIO_INTERVAL=3650
|
|
export PLATFORMIO_SETTING_CHECK_PRUNE_SYSTEM_THRESHOLD=10240
|
|
|
|
# Download libraries to `pio`
|
|
platformio pkg install -e native-tft
|
|
platformio pkg install -e native-tft -t platformio/tool-scons@4.40502.0
|
|
# Mangle PlatformIO cache to prevent internet access at build-time
|
|
# Simply adds 1 to all expiry (epoch) timestamps, adding ~500 years to expiry date
|
|
cp pio/core/.cache/downloads/usage.db pio/core/.cache/downloads/usage.db.bak
|
|
jq -c 'with_entries(.value |= (. | tostring + "1" | tonumber))' pio/core/.cache/downloads/usage.db.bak >pio/core/.cache/downloads/usage.db
|
|
# Compress `pio` directory to prevent dh_clean from sanitizing it
|
|
tar -cf pio.tar pio/
|
|
rm -rf pio
|
|
# Download the meshtastic/web release build.tar to `web.tar`
|
|
web_ver=$(cat bin/web.version)
|
|
curl -L "https://github.com/meshtastic/web/releases/download/v$web_ver/build.tar" -o web.tar
|
|
|
|
package=$(dpkg-parsechangelog --show-field Source)
|
|
|
|
rm -rf debian/changelog
|
|
dch --create --distribution "$SERIES" --package "$package" --newversion "$PKG_VERSION~$SERIES" \
|
|
"GitHub Actions Automatic packaging for $PKG_VERSION~$SERIES"
|
|
|
|
if [[ -n $GPG_KEY_ID ]]; then
|
|
# Build and sign the source deb
|
|
debuild -S -nc -k"$GPG_KEY_ID"
|
|
else
|
|
# Build the source deb without signing (forks)
|
|
debuild -S -nc
|
|
fi
|