From 1ae8dacaee20f9866f3874f183275c1ef61ffe74 Mon Sep 17 00:00:00 2001 From: Lingmo <115727099+lingmo-dream@users.noreply.github.com> Date: Mon, 22 Jan 2024 00:13:14 +0800 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3771140..6616f2a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,6 +7,22 @@ on: branches: [ main ] jobs: + debian: + name: Debian + runs-on: ubuntu-latest + container: docker.io/library/debian:sid + steps: + - name: Checkout Source + uses: actions/checkout@v2 + - name: Update repository + run: apt-get update -y + - name: Install the basic dev packages + run: apt-get install -y equivs curl git devscripts lintian build-essential automake autotools-dev cmake g++ + - name: Install build dependencies + run: apt build-dep ./ -y + - name: Build Package + run: debuild -us -uc -b -j$(nproc) + ubuntu: name: Ubuntu runs-on: ubuntu-latest