From f647ce2c076729b5c56bc85850f7b97c5e591f37 Mon Sep 17 00:00:00 2001 From: Bernd Zeimetz Date: Mon, 2 Dec 2024 11:15:24 +0100 Subject: [PATCH 1/2] Add a CI workflow for Debian packaging --- .github/workflows/debian.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/debian.yml diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml new file mode 100644 index 0000000..08e659e --- /dev/null +++ b/.github/workflows/debian.yml @@ -0,0 +1,17 @@ +name: Debian Packaging CI + +on: + push: + pull_request: + +jobs: + build-debs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: jtdor/build-deb-action@v1 + env: + DEB_BUILD_OPTIONS: noautodbgsym + with: + buildpackage-opts: --build=binary --no-sign + From b364c77c3e2388e29dafcfefa39e75a1203950dd Mon Sep 17 00:00:00 2001 From: Bernd Zeimetz Date: Mon, 2 Dec 2024 11:21:51 +0100 Subject: [PATCH 2/2] Also build on debian testing --- .github/workflows/debian.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index 08e659e..e000960 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -5,7 +5,7 @@ on: pull_request: jobs: - build-debs: + build-debian-testing: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -14,4 +14,14 @@ jobs: DEB_BUILD_OPTIONS: noautodbgsym with: buildpackage-opts: --build=binary --no-sign + docker-image: debian:testing-slim + build-debian-stable: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: jtdor/build-deb-action@v1 + env: + DEB_BUILD_OPTIONS: noautodbgsym + with: + buildpackage-opts: --build=binary --no-sign