mirror of
https://github.com/meshtastic/firmware.git
synced 2025-10-27 15:02:41 +00:00
Some checks are pending
Daily Packaging / docker-multiarch (push) Waiting to run
Daily Packaging / package-ppa (jammy) (push) Waiting to run
Daily Packaging / package-ppa (noble) (push) Waiting to run
Daily Packaging / package-ppa (plucky) (push) Waiting to run
Daily Packaging / package-ppa (questing) (push) Waiting to run
Daily Packaging / package-obs (push) Waiting to run
Daily Packaging / hook-copr (push) Waiting to run
CI / setup (all) (push) Waiting to run
CI / setup (check) (push) Waiting to run
CI / version (push) Waiting to run
CI / check (push) Blocked by required conditions
CI / build (push) Blocked by required conditions
CI / build-debian-src (push) Waiting to run
CI / package-pio-deps-native-tft (push) Waiting to run
CI / test-native (push) Waiting to run
CI / docker (alpine, native, linux/amd64) (push) Waiting to run
CI / docker (alpine, native, linux/arm64) (push) Waiting to run
CI / docker (alpine, native-tft, linux/amd64) (push) Waiting to run
CI / docker (debian, native, linux/amd64) (push) Waiting to run
CI / docker (debian, native, linux/arm/v7) (push) Waiting to run
CI / docker (debian, native, linux/arm64) (push) Waiting to run
CI / docker (debian, native-tft, linux/amd64) (push) Waiting to run
CI / gather-artifacts (esp32) (push) Blocked by required conditions
CI / gather-artifacts (esp32c3) (push) Blocked by required conditions
CI / gather-artifacts (esp32c6) (push) Blocked by required conditions
CI / gather-artifacts (esp32s3) (push) Blocked by required conditions
CI / gather-artifacts (nrf52840) (push) Blocked by required conditions
CI / gather-artifacts (rp2040) (push) Blocked by required conditions
CI / gather-artifacts (rp2350) (push) Blocked by required conditions
CI / gather-artifacts (stm32) (push) Blocked by required conditions
CI / release-artifacts (push) Blocked by required conditions
CI / release-firmware (esp32) (push) Blocked by required conditions
CI / release-firmware (esp32c3) (push) Blocked by required conditions
CI / release-firmware (esp32c6) (push) Blocked by required conditions
CI / release-firmware (esp32s3) (push) Blocked by required conditions
CI / release-firmware (nrf52840) (push) Blocked by required conditions
CI / release-firmware (rp2040) (push) Blocked by required conditions
CI / release-firmware (rp2350) (push) Blocked by required conditions
CI / release-firmware (stm32) (push) Blocked by required conditions
CI / publish-firmware (push) Blocked by required conditions
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
73 lines
2.2 KiB
YAML
73 lines
2.2 KiB
YAML
name: Build Debian Source Package
|
|
|
|
on:
|
|
workflow_call:
|
|
secrets:
|
|
PPA_GPG_PRIVATE_KEY:
|
|
required: false
|
|
inputs:
|
|
series:
|
|
description: Ubuntu/Debian series to target
|
|
required: true
|
|
type: string
|
|
build_location:
|
|
description: Location where build will execute
|
|
required: true
|
|
type: string
|
|
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
|
|
jobs:
|
|
build-debian-src:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v5
|
|
with:
|
|
submodules: recursive
|
|
path: meshtasticd
|
|
ref: ${{github.event.pull_request.head.ref}}
|
|
repository: ${{github.event.pull_request.head.repo.full_name}}
|
|
|
|
- name: Install deps
|
|
shell: bash
|
|
working-directory: meshtasticd
|
|
run: |
|
|
sudo apt-get update -y --fix-missing
|
|
sudo apt-get install -y software-properties-common build-essential devscripts equivs
|
|
sudo add-apt-repository ppa:meshtastic/build-tools -y
|
|
sudo apt-get update -y --fix-missing
|
|
sudo mk-build-deps --install --remove --tool='apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends --yes' debian/control
|
|
|
|
- name: Import GPG key
|
|
uses: crazy-max/ghaction-import-gpg@v6
|
|
with:
|
|
gpg_private_key: ${{ secrets.PPA_GPG_PRIVATE_KEY }}
|
|
id: gpg
|
|
|
|
- name: Get release version string
|
|
working-directory: meshtasticd
|
|
run: |
|
|
echo "deb=$(./bin/buildinfo.py deb)" >> $GITHUB_OUTPUT
|
|
env:
|
|
BUILD_LOCATION: ${{ inputs.build_location }}
|
|
id: version
|
|
|
|
- name: Fetch libdeps, package debian source
|
|
working-directory: meshtasticd
|
|
run: debian/ci_pack_sdeb.sh
|
|
env:
|
|
SERIES: ${{ inputs.series }}
|
|
GPG_KEY_ID: ${{ steps.gpg.outputs.keyid }}
|
|
PKG_VERSION: ${{ steps.version.outputs.deb }}
|
|
|
|
- name: Store binaries as an artifact
|
|
uses: actions/upload-artifact@v5
|
|
with:
|
|
name: firmware-debian-${{ steps.version.outputs.deb }}~${{ inputs.series }}-src
|
|
overwrite: true
|
|
path: |
|
|
meshtasticd_${{ steps.version.outputs.deb }}*
|