forked from meshtastic/firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
meshtasticd-debian: Include web components (meshtastic#5778)
- Loading branch information
Showing
10 changed files
with
31 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#!/usr/bin/bash | ||
export DEBEMAIL="github-actions[bot]@users.noreply.github.com" | ||
PKG_VERSION=$(python3 bin/buildinfo.py short) | ||
|
||
dch --newversion "$(python3 bin/buildinfo.py short)-1" \ | ||
--distribution unstable \ | ||
"GitHub Actions Automatic version bump" | ||
dch --newversion "$PKG_VERSION-1" \ | ||
--distribution UNRELEASED \ | ||
"GitHub Actions Automatic version bump" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,14 @@ export PLATFORMIO_LIBDEPS_DIR=pio/libdeps | |
export PLATFORMIO_PACKAGES_DIR=pio/packages | ||
export PLATFORMIO_CORE_DIR=pio/core | ||
|
||
# Download libraries to `libdeps` | ||
# Download libraries to `pio` | ||
platformio pkg install -e native | ||
platformio pkg install -t platformio/[email protected] | ||
platformio pkg install -e native -t platformio/[email protected] | ||
# Compress `pio` directory to prevent dh_clean from sanitizing it | ||
tar -cf pio.tar pio/ | ||
rm -rf pio | ||
# Download the latest meshtastic/web release build.tar to `web.tar` | ||
curl https://github.com/meshtastic/web/releases/download/latest/build.tar -o web.tar | ||
|
||
package=$(dpkg-parsechangelog --show-field Source) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
etc/meshtasticd | ||
etc/meshtasticd/config.d | ||
etc/meshtasticd/available.d | ||
usr/share/meshtasticd/web |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
pio/libdeps | ||
pio/packages | ||
pio/core | ||
pio.tar | ||
web.tar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
extend-diff-ignore = "\.pio\w*?$" | ||
tar-ignore = "" | ||
extend-diff-ignore = "\.pio" |