-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Build deb package | ||
on: [push] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-24.04 | ||
permissions: write-all | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Add description | ||
run: | | ||
git tag v6.9.0 | ||
- name: Download apt-get deiendencies | ||
env: | ||
DEBIAN_FRONTEND: noninteractive | ||
run: | | ||
sudo apt-get -y purge unattended-upgrades | ||
sudo apt-get -y update | ||
sudo apt-get -y install bison flex devscripts debhelper-compat libbsd-dev dh-package-notes dh-sequence-movetousr | ||
- name: Enable src repos | ||
run: | | ||
sudo sed -i 's/^Types: deb/Types: deb deb-src/' /etc/apt/sources.list.d/ubuntu.sources | ||
sudo apt update | ||
- name: Import debian rules | ||
run: | | ||
git remote add debian $(debcheckout -d iproute2 | awk '/url/{print $2;}') | ||
git fetch debian | ||
git checkout debian/$(git describe --tags | tr -d 'v')-1 -- debian | ||
sudo apt build-dep iproute2 | ||
- name: Build deb | ||
run: dpkg-buildpackage -b -rfakeroot -us -uc -d | ||
- name: Extract branch name | ||
shell: bash | ||
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT | ||
id: extract_branch | ||
- name: Zip artifacts | ||
run: | | ||
mkdir -p iproute2-l4s | ||
mv -t iproute2-l4s ../*.deb | ||
zip -r iproute2-l4s.zip iproute2-l4s | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: iproute2-l4s | ||
path: iproute2-l4s | ||
- name: Release tip build | ||
uses: pyTooling/Actions/releaser@main | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ steps.extract_branch.outputs.branch }}-build | ||
files: | | ||
iproute2-l4s.zip |