mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
5f2848f379
GHA workflow to build the debs
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
# GitHub actions workflow which builds the debian packages.
|
|
|
|
name: Debs
|
|
|
|
on:
|
|
push:
|
|
branches: ["develop", "release-*"]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
# first get the list of distros to build for.
|
|
get-distros:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
- id: set-distros
|
|
run: |
|
|
echo "::set-output name=distros::$(scripts-dev/build_debian_packages --show-dists-json)"
|
|
# map the step outputs to job outputs
|
|
outputs:
|
|
distros: ${{ steps.set-distros.outputs.distros }}
|
|
|
|
# now build the packages with a matrix build.
|
|
build-debs:
|
|
needs: get-distros
|
|
name: "Build .deb packages"
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
distro: ${{ fromJson(needs.get-distros.outputs.distros) }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
path: src
|
|
- uses: actions/setup-python@v2
|
|
- run: ./src/scripts-dev/build_debian_packages "${{ matrix.distro }}"
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: packages
|
|
path: debs/*
|