mirror of
https://github.com/meshtastic/firmware.git
synced 2026-05-24 16:58:01 -04:00
* Native MacOS hello world * Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update variants/native/portduino/platformio.ini Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix: ensure null-termination in getSerialString() and handle len==0 Agent-Logs-Url: https://github.com/meshtastic/firmware/sessions/e5647919-2255-48ad-bcaa-7a2c2fdbf212 Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com> --------- Co-authored-by: Jonathan Bennett <jbennett@incomsystems.biz> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
37 lines
1.1 KiB
Bash
Executable File
37 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
platformioFailed() {
|
|
[[ $VIRTUAL_ENV != "" ]] && exit 1 # don't hint at virtualenv if it's already in use
|
|
echo -e "\nThere were issues running platformio and you are not using a virtual environment." \
|
|
"\nYou may try setting up virtualenv and downloading the latest platformio from pip:" \
|
|
"\n\tvirtualenv venv" \
|
|
"\n\tsource venv/bin/activate" \
|
|
"\n\tpip install platformio" \
|
|
"\n\t./bin/build-native.sh # retry building"
|
|
exit 1
|
|
}
|
|
|
|
VERSION=$(bin/buildinfo.py long)
|
|
SHORT_VERSION=$(bin/buildinfo.py short)
|
|
PIO_ENV=${1:-native}
|
|
|
|
BUILDDIR=.pio/build/$PIO_ENV
|
|
OUTDIR=release
|
|
|
|
rm -f $OUTDIR/meshtasticd*
|
|
|
|
mkdir -p $OUTDIR/
|
|
rm -r $OUTDIR/* || true
|
|
|
|
basename=meshtasticd-$1-$VERSION
|
|
|
|
# Important to pull latest version of libs into all device flavors, otherwise some devices might be stale
|
|
pio pkg install --environment "$PIO_ENV" || platformioFailed
|
|
pio run --environment "$PIO_ENV" || platformioFailed
|
|
|
|
os_name=$(uname -s | tr '[:upper:]' '[:lower:]')
|
|
cp "$BUILDDIR/meshtasticd" "$OUTDIR/meshtasticd_${os_name}_$(uname -m)"
|
|
cp bin/native-install.* $OUTDIR/
|