meshtasticd debian: split libs for PPA (#5745)

This commit is contained in:
Austin
2025-01-05 11:22:11 -05:00
committed by GitHub
parent 6aabbedc00
commit 35814fd4bc
10 changed files with 132 additions and 9 deletions

41
.github/workflows/build_debian_src.yml vendored Normal file
View File

@@ -0,0 +1,41 @@
name: Build Debian Source Package
on: workflow_call
permissions:
contents: write
packages: write
jobs:
build-debian-src:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Install deps
shell: bash
run: |
sudo apt-get update -y --fix-missing
sudo apt-get install -y devscripts equivs
- name: Fetch libdeps, package debian source
run: debian/ci_pack_sdeb.sh
- name: Get release version string
run: |
echo "long=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
echo "short=$(./bin/buildinfo.py short)" >> $GITHUB_OUTPUT
id: version
- name: Store binaries as an artifact
uses: actions/upload-artifact@v4
with:
name: firmware-debian-${{ steps.version.outputs.long }}-src.zip
overwrite: true
path: |
../meshtasticd_${{ steps.version.outputs.short }}*

View File

@@ -128,6 +128,9 @@ jobs:
with:
board: ${{ matrix.board }}
package-ppa:
uses: ./.github/workflows/package_ppa.yml
package-raspbian:
uses: ./.github/workflows/package_raspbian.yml
@@ -332,12 +335,17 @@ jobs:
run: >-
bin/bump_version.py
- name: Update debian changelog
run: >-
debian/ci_changelog.sh
- name: Create version.properties pull request
uses: peter-evans/create-pull-request@v7
with:
title: Bump version.properties
add-paths: |
version.properties
debian/changelog
release-firmware:
strategy:

58
.github/workflows/package_ppa.yml vendored Normal file
View File

@@ -0,0 +1,58 @@
name: Package Launchpad PPA
on:
workflow_call:
workflow_dispatch:
permissions:
contents: write
packages: write
jobs:
build-debian-src:
uses: ./.github/workflows/build_debian_src.yml
package-ppa:
runs-on: ubuntu-24.04
needs: build-debian-src
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Get release version string
run: |
echo "long=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
echo "short=$(./bin/buildinfo.py short)" >> $GITHUB_OUTPUT
id: version
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: firmware-debian-${{ steps.version.outputs.long }}-src.zip
merge-multiple: true
# - name: Install deps
# shell: bash
# run: |
# sudo apt-get update -y --fix-missing
# sudo apt-get install -y dput
- name: Display structure of downloaded files
run: ls -R
- name: Publish PPA
if: ${{ github.event_name != 'pull_request_target' && github.event_name != 'pull_request' }}
uses: yuezk/publish-ppa-package@v2
with:
# See https://launchpad.net/~meshtastic/+archive/ubuntu/meshtastic-daily
repository: "meshtastic/meshtastic-daily"
gpg_private_key: ${{ secrets.PPA_GPG_PRIVATE_KEY }}
tarball: "meshtasticd_${{ steps.version.outputs.short }}.tar.xz"
# Supported Ubuntu versions
series: "plucky oracular noble jammy"
deb_email: "github-actions[bot]@users.noreply.github.com"
deb_fullname: "github-actions[bot]"