2022-11-06 14:05:23 +03:00
|
|
|
name: Build Debian packages
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: ${{ matrix.dist }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
dist: ['buster', 'bullseye', 'bookworm']
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2023-02-23 00:26:07 +03:00
|
|
|
#- name: change debian changelog
|
|
|
|
# run: |
|
|
|
|
# sudo apt-get update
|
|
|
|
# sudo apt-get install devscripts
|
|
|
|
# debchange -v "`git describe --tags`-${{ matrix.dist }}" -b -M --distribution ${{ matrix.dist }} "trunk build"
|
2022-11-06 14:05:23 +03:00
|
|
|
- uses: jtdor/build-deb-action@v1
|
|
|
|
with:
|
|
|
|
docker-image: debian:${{ matrix.dist }}-slim
|
|
|
|
buildpackage-opts: --build=binary --no-sign
|
2023-02-23 00:26:07 +03:00
|
|
|
before-build-hook: debchange --controlmaint --local="+$(git describe --tags)" "CI build"
|
|
|
|
extra-build-deps: devscripts
|
2022-11-06 14:05:23 +03:00
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: i2pd_${{ matrix.dist }}
|
|
|
|
path: debian/artifacts/i2pd_*.deb
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: i2pd-dbgsym_${{ matrix.dist }}
|
|
|
|
path: debian/artifacts/i2pd-dbgsym_*.deb
|