Skip to content

Commit

Permalink
GitHub: add action to build package on PR
Browse files Browse the repository at this point in the history
  • Loading branch information
c-po committed May 30, 2024
1 parent d29c8c3 commit 2e697b6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Debian Package Build
on:
pull_request:
branches:
- current
- sagitta
- equuleus

jobs:
package-build:
runs-on: ubuntu-latest
container:
image: vyos/vyos-build:equuleus
options: --sysctl net.ipv6.conf.lo.disable_ipv6=0
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build Debian package
run: dpkg-buildpackage -uc -us -tc -b

0 comments on commit 2e697b6

Please sign in to comment.