Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lingmo-dream authored Jan 21, 2024
1 parent d561365 commit 1ae8dac
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ on:
branches: [ main ]

jobs:
debian:
name: Debian
runs-on: ubuntu-latest
container: docker.io/library/debian:sid
steps:
- name: Checkout Source
uses: actions/checkout@v2
- name: Update repository
run: apt-get update -y
- name: Install the basic dev packages
run: apt-get install -y equivs curl git devscripts lintian build-essential automake autotools-dev cmake g++
- name: Install build dependencies
run: apt build-dep ./ -y
- name: Build Package
run: debuild -us -uc -b -j$(nproc)

ubuntu:
name: Ubuntu
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1ae8dac

Please sign in to comment.