aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/.github/workflows/debian.yml
blob: edfff87ff76220c3ce9bffdd50f1c1eb141669e3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                          
                                 


                                  
                                     
                                  
                                    
                                   
                                        



                                  
name: Packages (Debian)

on:
  push:
  pull_request:
  workflow_dispatch:

jobs:
  test:
    runs-on: ubuntu-latest
    name: Binary package
    steps:
      - name: Checkout
        uses: actions/checkout@v4
        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@v4
        with:
          name: build-area
          path: debian/build-area/
          if-no-files-found: error