mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
947 B
33 lines
947 B
2 years ago
|
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
|
||
|
- 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"
|
||
|
- uses: jtdor/build-deb-action@v1
|
||
|
with:
|
||
|
docker-image: debian:${{ matrix.dist }}-slim
|
||
|
buildpackage-opts: --build=binary --no-sign
|
||
|
- 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
|