From 13e5095907e4c0c2c1f3d271b484f83c37d5805c Mon Sep 17 00:00:00 2001 From: Elysia Date: Mon, 2 Sep 2024 22:57:09 +0800 Subject: [PATCH] Update CI --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 46c88d1..4632b79 100755 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,14 +10,19 @@ jobs: ubuntu: name: Ubuntu runs-on: ubuntu-latest + container: docker.io/library/debian:trixie steps: - name: Checkout Source - uses: actions/checkout@v2 + uses: actions/checkout@v4 + - name: Update repository run: sudo apt-get update -y + - name: Install the basic dev packages run: sudo apt-get install -y equivs curl git devscripts lintian build-essential automake autotools-dev cmake g++ + - name: Install build dependencies run: sudo mk-build-deps -i -t "apt-get --yes" -r + - name: Build Package run: sudo dpkg-buildpackage -b -uc -us -j$(nproc)