Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
Create build-deb.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
apgeorg authored Nov 15, 2023
1 parent 3aff577 commit 633daab
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build-deb.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build Debian Package
on:
push:
branches: [ "humble" ]
pull_request:
branches: [ "humble" ]
permissions:
contents: read
jobs:
build_debian:
runs-on: ubuntu-22.04
steps:
- name: Install dependecies
run: |
sudo apt update && sudo apt install -y python3-bloom python3-rosdep fakeroot debhelper dh-python
- name: Initialize rosdep
run: |
sudo rosdep init
rosdep update
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: humble
- name: Build debian package
run: |
bloom-generate rosdebian
fakeroot debian/rules binary

0 comments on commit 633daab

Please sign in to comment.