aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/debian.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/debian.yml')
-rw-r--r--.github/workflows/debian.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml
new file mode 100644
index 0000000..762071c
--- /dev/null
+++ b/.github/workflows/debian.yml
@@ -0,0 +1,26 @@
+name: Packages (Debian)
+
+on:
+ push:
+ pull_request:
+ workflow_dispatch:
+
+jobs:
+ test:
+ runs-on: ubuntu-latest
+ name: Binary package
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+ - name: Install dependencies
+ run: sudo make -C debian deps
+ - name: Build binary package
+ run: make -C debian bin/test
+ - name: Upload binary package
+ uses: actions/upload-artifact@v3
+ with:
+ name: build-area
+ path: debian/build-area/
+ if-no-files-found: error