From 1deaa95fdc475e3f9bd0349478bbe86861c9318f Mon Sep 17 00:00:00 2001 From: drlkf Date: Fri, 17 May 2024 14:11:54 +0200 Subject: [PATCH] ci: add debian build to github actions --- .github/workflows/build.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 917db4a..2050d68 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,6 +20,19 @@ jobs: - name: Build run: make + deb-build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Dependencies + run: | + sudo apt-get update + sudo mk-build-deps -i -t 'apt-get -y --no-install-recommends' + - name: Build + run: dpkg-buildpackage -us -uc -b + osx-build: runs-on: macos-latest